FlushInstructionCache method

int FlushInstructionCache(
  1. Pointer<Void> hProcess,
  2. Pointer<Void> lpBaseAddress,
  3. int dwSize
)

Implementation

int FlushInstructionCache(
  ffi.Pointer<ffi.Void> hProcess,
  ffi.Pointer<ffi.Void> lpBaseAddress,
  int dwSize,
) {
  return _FlushInstructionCache(
    hProcess,
    lpBaseAddress,
    dwSize,
  );
}