mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[XDK]
- Define DRIVER_DISPATCH_PAGED and DRIVER_DISPATCH_RAISED svn path=/trunk/; revision=71833
This commit is contained in:
parent
9875a2c7aa
commit
d5c3d6287d
1 changed files with 11 additions and 1 deletions
|
@ -2209,13 +2209,23 @@ typedef VOID
|
|||
typedef DRIVER_UNLOAD *PDRIVER_UNLOAD;
|
||||
|
||||
_Function_class_(DRIVER_DISPATCH)
|
||||
_IRQL_requires_(PASSIVE_LEVEL)
|
||||
_IRQL_requires_max_(DISPATCH_LEVEL)
|
||||
_IRQL_requires_same_
|
||||
typedef NTSTATUS
|
||||
(NTAPI DRIVER_DISPATCH)(
|
||||
_In_ struct _DEVICE_OBJECT *DeviceObject,
|
||||
_Inout_ struct _IRP *Irp);
|
||||
typedef DRIVER_DISPATCH *PDRIVER_DISPATCH;
|
||||
typedef DRIVER_DISPATCH DRIVER_DISPATCH_RAISED;
|
||||
|
||||
_Function_class_(DRIVER_DISPATCH)
|
||||
_IRQL_requires_(PASSIVE_LEVEL)
|
||||
_IRQL_requires_same_
|
||||
typedef NTSTATUS
|
||||
(NTAPI DRIVER_DISPATCH_PAGED)(
|
||||
_In_ struct _DEVICE_OBJECT *DeviceObject,
|
||||
_Inout_ struct _IRP *Irp);
|
||||
typedef DRIVER_DISPATCH_PAGED *PDRIVER_DISPATCH_PAGED;
|
||||
|
||||
typedef struct _DRIVER_OBJECT {
|
||||
CSHORT Type;
|
||||
|
|
Loading…
Reference in a new issue