GlobalAlloc method

Pointer<Void> GlobalAlloc(
  1. int uFlags,
  2. int dwBytes
)

Implementation

ffi.Pointer<ffi.Void> GlobalAlloc(
  int uFlags,
  int dwBytes,
) {
  return _GlobalAlloc(
    uFlags,
    dwBytes,
  );
}