FlushInstructionCache method
Implementation
int FlushInstructionCache(
ffi.Pointer<ffi.Void> hProcess,
ffi.Pointer<ffi.Void> lpBaseAddress,
int dwSize,
) {
return (_FlushInstructionCache ??= _dylib.lookupFunction<
_c_FlushInstructionCache,
_dart_FlushInstructionCache>('FlushInstructionCache'))(
hProcess,
lpBaseAddress,
dwSize,
);
}