include: Add security QOS flags to winbase.h.

oldstable
Rob Shearman 2006-11-15 01:01:32 +00:00 committed by Alexandre Julliard
parent 1e6786699d
commit 167323e6f8
1 changed files with 12 additions and 0 deletions

View File

@ -710,6 +710,18 @@ typedef struct _BY_HANDLE_FILE_INFORMATION
#define NMPWAIT_NOWAIT 0x00000001
#define NMPWAIT_USE_DEFAULT_WAIT 0x00000000
/* Security flags for dwFlagsAndAttributes of CreateFile */
#define SECURITY_ANONYMOUS (SecurityAnonymous << 16)
#define SECURITY_IDENTIFICATION (SecurityIdentification << 16)
#define SECURITY_IMPERSONATION (SecurityImpersonation << 16)
#define SECURITY_DELEGATION (SecurityDelegation << 16)
#define SECURITY_CONTEXT_TRACKING 0x00040000
#define SECURITY_EFFECTIVE_ONLY 0x00080000
#define SECURITY_SQOS_PRESENT 0x00100000
#define SECURITY_VALID_SQOS_FLAGS 0x001f0000
typedef struct _SYSTEM_POWER_STATUS
{
BYTE ACLineStatus;