mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 11:53:21 +00:00
Replace .def file by a .spec file
svn path=/trunk/; revision=35209
This commit is contained in:
parent
ce5c619db0
commit
389c99370d
10 changed files with 1048 additions and 1055 deletions
|
@ -22,7 +22,7 @@
|
||||||
In summary, we just implement to satisfy the MME API (winmm) requirements.
|
In summary, we just implement to satisfy the MME API (winmm) requirements.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
LONG
|
LONG WINAPI
|
||||||
DriverProc(
|
DriverProc(
|
||||||
DWORD driver_id,
|
DWORD driver_id,
|
||||||
HANDLE driver_handle,
|
HANDLE driver_handle,
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
; $Id$
|
|
||||||
;
|
|
||||||
; mmdrv.def
|
|
||||||
;
|
|
||||||
; ReactOS Operating System
|
|
||||||
;
|
|
||||||
LIBRARY mmdrv.dll
|
|
||||||
EXPORTS
|
|
||||||
DriverProc@20
|
|
||||||
;widMessage@20
|
|
||||||
wodMessage@20
|
|
||||||
;midMessage@20
|
|
||||||
;modMessage@20
|
|
||||||
;auxMessage@20
|
|
|
@ -1,5 +1,5 @@
|
||||||
<module name="mmdrv" type="win32dll" baseaddress="${BASEADDRESS_MMDRV}" installbase="system32" installname="mmdrv.dll" unicode="yes">
|
<module name="mmdrv" type="win32dll" baseaddress="${BASEADDRESS_MMDRV}" installbase="system32" installname="mmdrv.dll" unicode="yes">
|
||||||
<importlibrary definition="mmdrv.def" />
|
<importlibrary definition="mmdrv.spec.def" />
|
||||||
<include base="mmdrv">.</include>
|
<include base="mmdrv">.</include>
|
||||||
<define name="NDEBUG" />
|
<define name="NDEBUG" />
|
||||||
<library>ntdll</library>
|
<library>ntdll</library>
|
||||||
|
@ -13,4 +13,5 @@
|
||||||
<file>common.c</file>
|
<file>common.c</file>
|
||||||
<file>wave.c</file>
|
<file>wave.c</file>
|
||||||
<file>wave_io.c</file>
|
<file>wave_io.c</file>
|
||||||
|
<file>mmdrv.spec</file>
|
||||||
</module>
|
</module>
|
||||||
|
|
6
reactos/dll/win32/mmdrv/mmdrv.spec
Normal file
6
reactos/dll/win32/mmdrv/mmdrv.spec
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
@ stdcall DriverProc(long ptr long long long)
|
||||||
|
;@ stdcall widMessage(long long long long long)
|
||||||
|
@ stdcall wodMessage(long long long long long)
|
||||||
|
;@ stdcall midMessage(long long long long long)
|
||||||
|
;@ stdcall modMessage(long long long long long)
|
||||||
|
;@ stdcall auxMessage(long long long long long)
|
Loading…
Add table
Add a link
Reference in a new issue