Replace .def file by a .spec file

svn path=/trunk/; revision=35172
This commit is contained in:
Hervé Poussineau 2008-08-07 20:38:54 +00:00
parent 7190d810e8
commit 2f93772b83
3 changed files with 8 additions and 9 deletions

View file

@ -1,8 +0,0 @@
LIBRARY cards.dll
EXPORTS
WEP
cdtAnimate
cdtDraw
cdtDrawExt
cdtInit
cdtTerm

View file

@ -1,5 +1,5 @@
<module name="cards" type="win32dll" baseaddress="${BASEADDRESS_CARDS}" installbase="system32" installname="cards.dll" unicode="yes">
<importlibrary definition="cards.def" />
<importlibrary definition="cards.spec.def" />
<include base="cards">.</include>
<!-- Possible definitions: CARDSTYLE_DEFAULT or CARDSTYLE_BAVARIAN -->
@ -10,4 +10,5 @@
<library>user32</library>
<file>cards.c</file>
<file>cards.rc</file>
<file>cards.spec</file>
</module>

View file

@ -0,0 +1,6 @@
@ stdcall WEP(long)
@ stdcall cdtAnimate(ptr long long long long)
@ stdcall cdtDraw(ptr long long long long long)
@ stdcall cdtDrawExt(ptr long long long long long long long)
@ stdcall cdtInit(ptr ptr)
@ stdcall cdtTerm()