LocalReAlloc method

Pointer<Void> LocalReAlloc(
  1. Pointer<Void> hMem,
  2. int uBytes,
  3. int uFlags
)

Implementation

ffi.Pointer<ffi.Void> LocalReAlloc(
  ffi.Pointer<ffi.Void> hMem,
  int uBytes,
  int uFlags,
) {
  return _LocalReAlloc(
    hMem,
    uBytes,
    uFlags,
  );
}