mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
14 lines
336 B
C
14 lines
336 B
C
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_ACL_H_
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_ACL_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
struct NtAcl {
|
|
uint8_t AclRevision;
|
|
uint8_t Sbz1;
|
|
uint16_t AclSize;
|
|
uint16_t AceCount;
|
|
uint16_t Sbz2;
|
|
};
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_ACL_H_ */
|