Commit dbeaaf2b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

include: Add missing enum to wdm.h.

parent e4ec6f87
...@@ -1657,8 +1657,12 @@ static inline void IoCopyCurrentIrpStackLocationToNext(IRP *irp) ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment