[driver] Add function role type declarations

Inhibit build warnings from OACR by adding function role type
declarations where applicable.

Signed-off-by: Michael Brown <mbrown@fensystems.co.uk>
This commit is contained in:
Michael Brown 2014-08-10 01:33:17 +01:00
parent 6cf101e48d
commit 92ff91e5f3

View File

@ -70,6 +70,15 @@ static const PWCHAR sanbootconf_device_symlink[] = {
L"\\DosDevices\\iSCSIBoot",
};
/* Forward declarations */
static __drv_dispatchType ( IRP_MJ_CREATE )
__drv_dispatchType ( IRP_MJ_CLOSE )
__drv_dispatchType ( IRP_MJ_CLEANUP )
DRIVER_DISPATCH sanbootconf_dummy_irp;
static __drv_dispatchType ( IRP_MJ_DEVICE_CONTROL )
DRIVER_DISPATCH sanbootconf_iocontrol_irp;
DRIVER_INITIALIZE DriverEntry;
/**
* Load system start options
*