2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYDESCRIPTOR_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYDESCRIPTOR_H_
|
2020-11-28 20:01:51 +00:00
|
|
|
#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_ */
|