- Replace magic numbers with IRP_MJ_* constants

svn path=/trunk/; revision=46331
This commit is contained in:
Cameron Gutman 2010-03-22 01:25:48 +00:00
parent d90af61d6f
commit a1d37edf49

View file

@ -1095,12 +1095,12 @@ DriverEntry(IN PDRIVER_OBJECT DriverObject,
RegistryPath->Buffer);
/* Setup the major dispatchers */
DriverObject->MajorFunction[0] = CmBattOpenClose;
DriverObject->MajorFunction[2] = CmBattOpenClose;
DriverObject->MajorFunction[14] = CmBattIoctl;
DriverObject->MajorFunction[22] = CmBattPowerDispatch;
DriverObject->MajorFunction[27] = CmBattPnpDispatch;
DriverObject->MajorFunction[23] = CmBattSystemControl;
DriverObject->MajorFunction[IRP_MJ_CREATE] = CmBattOpenClose;
DriverObject->MajorFunction[IRP_MJ_CLOSE] = CmBattOpenClose;
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = CmBattIoctl;
DriverObject->MajorFunction[IRP_MJ_POWER] = CmBattPowerDispatch;
DriverObject->MajorFunction[IRP_MJ_PNP] = CmBattPnpDispatch;
DriverObject->MajorFunction[IRP_MJ_SYSTEM_CONTROL] = CmBattSystemControl;
/* And the unload routine */
DriverObject->DriverUnload = CmBattUnload;