cosmopolitan/libc/nt/struct/securitydescriptor.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
376 B
C
Raw Permalink 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
struct NtSecurityDescriptor {
uint8_t Revision;
uint8_t Sbz1;
uint16_t Control;
void *Owner;
void *Group;
struct NtAcl *Sacl;
struct NtAcl *Dacl;
};
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_SECURITYDESCRIPTOR_H_ */