LocalAlloc method

Pointer<Void> LocalAlloc(
  1. int uFlags,
  2. int uBytes
)

Implementation

ffi.Pointer<ffi.Void> LocalAlloc(
  int uFlags,
  int uBytes,
) {
  return _LocalAlloc(
    uFlags,
    uBytes,
  );
}