include: Add missing enum to wdm.h.
This commit is contained in:
parent
e4ec6f87e0
commit
dbeaaf2b0f
1 changed files with 6 additions and 2 deletions
|
@ -1657,8 +1657,12 @@ static inline void IoCopyCurrentIrpStackLocationToNext(IRP *irp)
|
|||
next->Control = 0;
|
||||
}
|
||||
|
||||
#define KernelMode 0
|
||||
#define UserMode 1
|
||||
typedef enum _MODE
|
||||
{
|
||||
KernelMode,
|
||||
UserMode,
|
||||
MaximumMode
|
||||
} MODE;
|
||||
|
||||
/* directory object access rights */
|
||||
#define DIRECTORY_QUERY 0x0001
|
||||
|
|
Loading…
Add table
Reference in a new issue