Author: hpoussin Date: Sat Aug 9 06:12:15 2008 New Revision: 35221
URL: http://svn.reactos.org/svn/reactos?rev=35221&view=rev Log: Replace .def file by a .spec file
Added: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.spec (with props) Removed: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.def Modified: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c trunk/reactos/dll/win32/wdmaud.drv/wdmaud.rbuild
Modified: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/wdmaud... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/wdmaud.drv/wdmaud.c [iso-8859-1] Sat Aug 9 06:12:15 2008 @@ -216,7 +216,7 @@ return MMSYSERR_NOTSUPPORTED; }
-LRESULT +LRESULT APIENTRY DriverProc(DWORD dwDriverID, HDRVR hDriver, UINT uiMessage,
Removed: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.def URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/wdmaud... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/wdmaud.def [iso-8859-1] (original) +++ trunk/reactos/dll/win32/wdmaud.drv/wdmaud.def (removed) @@ -1,9 +1,0 @@ -LIBRARY wdmaud.drv - -EXPORTS -DriverProc -mxdMessage -auxMessage -wodMessage -widMessage -modMessage
Modified: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.rbuild URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/wdmaud... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/wdmaud.rbuild [iso-8859-1] (original) +++ trunk/reactos/dll/win32/wdmaud.drv/wdmaud.rbuild [iso-8859-1] Sat Aug 9 06:12:15 2008 @@ -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>
Added: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.spec URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/wdmaud.drv/wdmaud... ============================================================================== --- trunk/reactos/dll/win32/wdmaud.drv/wdmaud.spec (added) +++ trunk/reactos/dll/win32/wdmaud.drv/wdmaud.spec [iso-8859-1] Sat Aug 9 06:12:15 2008 @@ -1,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)
Propchange: trunk/reactos/dll/win32/wdmaud.drv/wdmaud.spec ------------------------------------------------------------------------------ svn:eol-style = native