mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 18:56:48 +00:00
Replace .def file by a .spec file
svn path=/trunk/; revision=35375
This commit is contained in:
parent
41544ac115
commit
9fbc7142ad
3 changed files with 5 additions and 9 deletions
|
@ -1,8 +0,0 @@
|
|||
LIBRARY pciidex.sys
|
||||
|
||||
EXPORTS
|
||||
PciIdeXGetBusData@16
|
||||
PciIdeXInitialize@16
|
||||
PciIdeXSetBusData@20
|
||||
|
||||
;EOF
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../../tools/rbuild/project.dtd">
|
||||
<module name="pciidex" type="kernelmodedriver" installbase="system32/drivers" installname="pciidex.sys">
|
||||
<importlibrary definition="pciidex.def" />
|
||||
<importlibrary definition="pciidex.spec.def" />
|
||||
<library>ntoskrnl</library>
|
||||
<file>fdo.c</file>
|
||||
<file>miniport.c</file>
|
||||
|
@ -9,4 +9,5 @@
|
|||
<file>pciidex.c</file>
|
||||
<file>pdo.c</file>
|
||||
<file>pciidex.rc</file>
|
||||
<file>pciidex.spec</file>
|
||||
</module>
|
||||
|
|
3
reactos/drivers/storage/ide/pciidex/pciidex.spec
Normal file
3
reactos/drivers/storage/ide/pciidex/pciidex.spec
Normal file
|
@ -0,0 +1,3 @@
|
|||
@ stdcall PciIdeXGetBusData(ptr ptr long long)
|
||||
@ stdcall PciIdeXInitialize(ptr ptr ptr long)
|
||||
@ stdcall PciIdeXSetBusData(ptr ptr ptr long long)
|
Loading…
Reference in a new issue