mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
fa20edc44d
- 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
21 lines
637 B
C
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_ */
|