Replace .def file by a .spec file

svn path=/trunk/; revision=35386
This commit is contained in:
Hervé Poussineau 2008-08-16 12:03:07 +00:00
parent b38fdbfee0
commit 0e0ea9b0df
3 changed files with 10 additions and 14 deletions

View file

@ -1,12 +0,0 @@
;
; Exports definition file for drmk.sys
;
EXPORTS
DrmAddContentHandlers@12
DrmCreateContentMixed@12
DrmDestroyContent@4
DrmForwardContentToDeviceObject@12
DrmForwardContentToFileObject@8
DrmForwardContentToInterface@12
DrmGetContentRights@8

View file

@ -4,9 +4,10 @@
<include base="drmk">.</include>
<include base="drmk">..</include>
<include base="drmk">../include</include>
<importlibrary definition="drmk.def" />
<importlibrary definition="drmk.spec.def" />
<library>ntoskrnl</library>
<define name="BUILDING_DRMK" />
<file>drmk.rc</file>
<file>stubs.cpp</file>
<file>drmk.rc</file>
<file>drmk.spec</file>
</module>

View file

@ -0,0 +1,7 @@
@ stdcall DrmAddContentHandlers(long ptr long)
@ stdcall DrmCreateContentMixed(ptr long ptr)
@ stdcall DrmDestroyContent(long)
@ stdcall DrmForwardContentToDeviceObject(long ptr ptr)
@ stdcall DrmForwardContentToFileObject(long ptr)
@ stdcall DrmForwardContentToInterface(long ptr long)
@ stdcall DrmGetContentRights(long ptr)