This commit is contained in:
Bill Zissimopoulos 2015-11-16 23:25:29 -08:00
parent b88eb453e6
commit be46a057c5
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ DriverEntry(
DriverObject->MajorFunction[IRP_MJ_SET_QUOTA] = 0;
DriverObject->MajorFunction[IRP_MJ_PNP] = 0;
/* setup fast I/O */
/* setup fast I/O and resource acquisition */
static FAST_IO_DISPATCH FspFastIoDispatch = { 0 };
FspFastIoDispatch.SizeOfFastIoDispatch = sizeof FspFastIoDispatch;
FspFastIoDispatch.FastIoCheckIfPossible = FspFastIoCheckIfPossible;

View File

@ -51,6 +51,6 @@ FAST_IO_ACQUIRE_FOR_CCFLUSH FspAcquireForCcFlush;
FAST_IO_RELEASE_FOR_CCFLUSH FspReleaseForCcFlush;
/* extern */
PDEVICE_OBJECT FspDeviceObject;
extern PDEVICE_OBJECT FspDeviceObject;
#endif