cosmopolitan/libc/nt/struct/imageenclaveconfig.internal.h
Justine Tunney fa20edc44d
Reduce header complexity
- Remove most __ASSEMBLER__ __LINKER__ ifdefs
- Rename libc/intrin/bits.h to libc/serialize.h
- Block pthread cancelation in fchmodat() polyfill
- Remove `clang-format off` statements in third_party
2023-11-28 14:39:42 -08:00

21 lines
637 B
C

#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_IMAGEENCLAVECONFIG_H_
#define COSMOPOLITAN_LIBC_NT_STRUCT_IMAGEENCLAVECONFIG_H_
#include "libc/nt/pedef.internal.h"
struct NtImageEnclaveConfig {
uint32_t Size;
uint32_t MinimumRequiredConfigSize;
uint32_t PolicyFlags;
uint32_t NumberOfImports;
uint32_t ImportList;
uint32_t ImportEntrySize;
uint8_t FamilyID[kNtImageEnclaveShortIdLength];
uint8_t ImageID[kNtImageEnclaveShortIdLength];
uint32_t ImageVersion;
uint32_t SecurityVersion;
uint64_t EnclaveSize;
uint32_t NumberOfThreads;
uint32_t EnclaveFlags;
};
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_IMAGEENCLAVECONFIG_H_ */