CreateEnclave method
Implementation
ffi.Pointer<ffi.Void> CreateEnclave(
ffi.Pointer<ffi.Void> hProcess,
ffi.Pointer<ffi.Void> lpAddress,
int dwSize,
int dwInitialCommitment,
int flEnclaveType,
ffi.Pointer<ffi.Void> lpEnclaveInformation,
int dwInfoLength,
ffi.Pointer<ffi.Uint64> lpEnclaveError,
) {
return (_CreateEnclave ??=
_dylib.lookupFunction<_c_CreateEnclave, _dart_CreateEnclave>(
'CreateEnclave'))(
hProcess,
lpAddress,
dwSize,
dwInitialCommitment,
flEnclaveType,
lpEnclaveInformation,
dwInfoLength,
lpEnclaveError,
);
}