cosmopolitan/libc/nt/struct/securitydescriptor.h

18 lines
461 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYDESCRIPTOR_H_
#define COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYDESCRIPTOR_H_
#include "libc/nt/struct/acl.h"
2020-06-15 14:18:57 +00:00
#if !(__ASSEMBLER__ + __LINKER__ + 0)
struct NtSecurityDescriptor {
uint8_t Revision;
uint8_t Sbz1;
uint16_t Control;
void *Owner;
void *Group;
struct NtAcl *Sacl;
struct NtAcl *Dacl;
};
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYDESCRIPTOR_H_ */