GlobalAlloc function kernel32
Allocates the specified number of bytes from the heap.
HGLOBAL GlobalAlloc(
UINT uFlags,
SIZE_T dwBytes
);
Implementation
Pointer GlobalAlloc(int uFlags, int dwBytes) => _GlobalAlloc(uFlags, dwBytes);
Allocates the specified number of bytes from the heap.
HGLOBAL GlobalAlloc(
UINT uFlags,
SIZE_T dwBytes
);
Pointer GlobalAlloc(int uFlags, int dwBytes) => _GlobalAlloc(uFlags, dwBytes);