#ifndef _NTLDR_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
#if (PHNT_VERSION >= PHNT_THRESHOLD)
// rev from DeleteEnclave
/**
* Deletes the specified enclave.
*
* @param BaseAddress The base address of the enclave that you want to delete.
* @return NTSTATUS Successful or errant status.
* @remarks https://learn.microsoft.com/en-us/windows/win32/api/enclaveapi/nf-enclaveapi-deleteenclave
*/
NTSYSAPI
NTSTATUS
NTAPI
LdrDeleteEnclave(
_In_ PVOID BaseAddress
);
View code on GitHub
No description available.