Fix ext2 driver compilation. NOT TESTED YET!

svn path=/trunk/; revision=32293
This commit is contained in:
Hervé Poussineau 2008-02-11 16:42:10 +00:00
parent 4797b6a8d5
commit b9ec75f36e
22 changed files with 185 additions and 152 deletions

View file

@ -38,7 +38,7 @@
* Return Value: The Status of the Read IO
*
*************************************************************************/
NTSTATUS Ext2ReadLogicalBlocks (
NTSTATUS NTAPI Ext2ReadLogicalBlocks (
PDEVICE_OBJECT PtrTargetDeviceObject, // the Target Device Object
VOID *Buffer, // The Buffer that takes the data read in
LARGE_INTEGER StartLogicalBlock, // The logical block from which reading is to start
@ -108,7 +108,7 @@ NTSTATUS Ext2ReadLogicalBlocks (
* Return Value: The Status of the Read IO
*
*************************************************************************/
NTSTATUS Ext2ReadPhysicalBlocks (
NTSTATUS NTAPI Ext2ReadPhysicalBlocks (
PDEVICE_OBJECT PtrTargetDeviceObject, // the Target Device Object
VOID *Buffer, // The Buffer that takes the data read in
LARGE_INTEGER StartPhysicalBlock, // The block from which reading is to start