19 lines
444 B
C
19 lines
444 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYDESCRIPTOR_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYDESCRIPTOR_H_
|
||
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||
|
|
||
|
struct NtAcl;
|
||
|
|
||
|
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_ */
|