Replace .def file by a .spec file

svn path=/trunk/; revision=35169
This commit is contained in:
Hervé Poussineau 2008-08-07 20:21:23 +00:00
parent 3aba92f351
commit f648258292
3 changed files with 7 additions and 11 deletions

View file

@ -1,10 +0,0 @@
LIBRARY clb.dll
EXPORTS
ClbAddData @1
ClbSetColumnWidths @2
ClbStyleW @3
ClbWndProc @4
CustomControlInfoW @5
; EOF

View file

@ -1,7 +1,7 @@
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../../tools/rbuild/project.dtd">
<module name="clb" type="win32dll" baseaddress="${BASEADDRESS_CLB}" installbase="system32" installname="clb.dll" unicode="yes">
<importlibrary definition="clb.def" />
<importlibrary definition="clb.spec.def" />
<include base="clb">.</include>
<define name="_WIN32_IE">0x0500</define>
<define name="_WIN32_WINNT">0x0600</define>
@ -13,5 +13,6 @@
<library>comctl32</library>
<file>clb.c</file>
<file>clb.rc</file>
<file>clb.spec</file>
<pch>precomp.h</pch>
</module>

View file

@ -0,0 +1,5 @@
1 stdcall ClbAddData(long long long)
2 stdcall ClbSetColumnWidths(long long long)
3 stdcall ClbStyleW(ptr ptr)
4 stdcall ClbWndProc(ptr long ptr ptr)
5 stdcall CustomControlInfoW(ptr)