GlobalReAlloc method

Pointer<Void> GlobalReAlloc(
  1. Pointer<Void> hMem,
  2. int dwBytes,
  3. int uFlags
)

Implementation

ffi.Pointer<ffi.Void> GlobalReAlloc(
  ffi.Pointer<ffi.Void> hMem,
  int dwBytes,
  int uFlags,
) {
  return _GlobalReAlloc(
    hMem,
    dwBytes,
    uFlags,
  );
}