Replace .def file by a .spec file

svn path=/trunk/; revision=35221
This commit is contained in:
Hervé Poussineau
2008-08-09 11:12:15 +00:00
parent 1a3e978ddd
commit 4f84f4dabf
4 changed files with 9 additions and 11 deletions
+1 -1
View File
@@ -216,7 +216,7 @@ modMessage(UINT uDevice,
return MMSYSERR_NOTSUPPORTED;
}
LRESULT
LRESULT APIENTRY
DriverProc(DWORD dwDriverID,
HDRVR hDriver,
UINT uiMessage,
-9
View File
@@ -1,9 +0,0 @@
LIBRARY wdmaud.drv
EXPORTS
DriverProc
mxdMessage
auxMessage
wodMessage
widMessage
modMessage
+2 -1
View File
@@ -1,5 +1,5 @@
<module name="wdmaud.drv" type="win32dll" baseaddress="${BASEADDRESS_WDMAUD}" installbase="system32" installname="wdmaud.drv">
<importlibrary definition="wdmaud.def" />
<importlibrary definition="wdmaud.spec.def" />
<include base="wdmaud.drv">.</include>
<define name="_DISABLE_TIDENTS" />
<library>advapi32</library>
@@ -9,4 +9,5 @@
<library>winmm</library>
<file>wdmaud.c</file>
<file>wdmaud.rc</file>
<file>wdmaud.spec</file>
</module>
+6
View File
@@ -0,0 +1,6 @@
@ stdcall DriverProc(ptr long long ptr ptr)
@ stdcall mxdMessage(long long long long long)
@ stdcall auxMessage(long long long long long)
@ stdcall wodMessage(long long long long long)
@ stdcall widMessage(long long long long long)
@ stdcall modMessage(long long long long long)