2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_NT_I_OBJECTATTRIBUTES_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_NT_I_OBJECTATTRIBUTES_H_
|
2020-11-28 20:01:51 +00:00
|
|
|
#include "libc/nt/struct/rtluserprocessparameters.h"
|
|
|
|
#include "libc/nt/struct/securityattributes.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
|
|
|
|
struct NtObjectAttributes {
|
|
|
|
uint32_t Length;
|
2020-11-28 20:01:51 +00:00
|
|
|
int64_t RootDirectory;
|
2020-06-15 14:18:57 +00:00
|
|
|
struct NtUnicodeString *ObjectName;
|
|
|
|
uint32_t Attributes; /* OBJ_INHERIT, etc. */
|
|
|
|
struct NtSecurityDescriptor *SecurityDescriptor;
|
|
|
|
void *SecurityQualityOfService;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_I_OBJECTATTRIBUTES_H_ */
|