#ifndef _NTMMAPI_H
/**
* The MEMORY_ENCLAVE_IMAGE_INFORMATION structure contains extended image
* information with enclave identity metadata.
*/
typedef struct _MEMORY_ENCLAVE_IMAGE_INFORMATION
{
MEMORY_IMAGE_INFORMATION ImageInfo;
UCHAR UniqueID[32]; // 32-byte unique identifier for the enclave image.
UCHAR AuthorID[32]; // 32-byte identifier for the author/creator of the enclave image.
} MEMORY_ENCLAVE_IMAGE_INFORMATION, *PMEMORY_ENCLAVE_IMAGE_INFORMATION;
View code on GitHubNo description available.