mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 18:35: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;
|
typedef DRIVER_UNLOAD *PDRIVER_UNLOAD;
|
||||||
|
|
||||||
_Function_class_(DRIVER_DISPATCH)
|
_Function_class_(DRIVER_DISPATCH)
|
||||||
_IRQL_requires_(PASSIVE_LEVEL)
|
_IRQL_requires_max_(DISPATCH_LEVEL)
|
||||||
_IRQL_requires_same_
|
_IRQL_requires_same_
|
||||||
typedef NTSTATUS
|
typedef NTSTATUS
|
||||||
(NTAPI DRIVER_DISPATCH)(
|
(NTAPI DRIVER_DISPATCH)(
|
||||||
_In_ struct _DEVICE_OBJECT *DeviceObject,
|
_In_ struct _DEVICE_OBJECT *DeviceObject,
|
||||||
_Inout_ struct _IRP *Irp);
|
_Inout_ struct _IRP *Irp);
|
||||||
typedef DRIVER_DISPATCH *PDRIVER_DISPATCH;
|
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 {
|
typedef struct _DRIVER_OBJECT {
|
||||||
CSHORT Type;
|
CSHORT Type;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue