LoadEnclaveData method
Implementation
int LoadEnclaveData(
ffi.Pointer<ffi.Void> hProcess,
ffi.Pointer<ffi.Void> lpAddress,
ffi.Pointer<ffi.Void> lpBuffer,
int nSize,
int flProtect,
ffi.Pointer<ffi.Void> lpPageInformation,
int dwInfoLength,
ffi.Pointer<ffi.Uint64> lpNumberOfBytesWritten,
ffi.Pointer<ffi.Uint64> lpEnclaveError,
) {
return (_LoadEnclaveData ??=
_dylib.lookupFunction<_c_LoadEnclaveData, _dart_LoadEnclaveData>(
'LoadEnclaveData'))(
hProcess,
lpAddress,
lpBuffer,
nSize,
flProtect,
lpPageInformation,
dwInfoLength,
lpNumberOfBytesWritten,
lpEnclaveError,
);
}