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;
|
next->Control = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define KernelMode 0
|
typedef enum _MODE
|
||||||
#define UserMode 1
|
{
|
||||||
|
KernelMode,
|
||||||
|
UserMode,
|
||||||
|
MaximumMode
|
||||||
|
} MODE;
|
||||||
|
|
||||||
/* directory object access rights */
|
/* directory object access rights */
|
||||||
#define DIRECTORY_QUERY 0x0001
|
#define DIRECTORY_QUERY 0x0001
|
||||||
|
|
Loading…
Add table
Reference in a new issue