1 /*++ 2 3 Copyright (c) Microsoft Corporation 4 5 ModuleName: 6 7 MxDriverObjectUm.h 8 9 Abstract: 10 11 User Mode implementation of Driver Object defined in MxDriverObject.h 12 13 --*/ 14 15 #pragma once 16 17 typedef PDRIVER_OBJECT_UM MdDriverObject; 18 typedef DRIVER_ADD_DEVICE_UM MdDriverAddDeviceType, *MdDriverAddDevice; 19 typedef DRIVER_UNLOAD_UM MdDriverUnloadType, *MdDriverUnload; 20 typedef DRIVER_DISPATCH_UM MdDriverDispatchType, *MdDriverDispatch; 21 22 #include "MxDriverObject.h" 23 24 25