Group: Memory Management - Library: kernel32
Creating a folder
Retrieving local computer and user names
Retrieving the name of the default printer for the current user on the local computer (Win NT/XP)
Pocket PC: base class
Encapsulating access to the Windows Services in a class
Reading security permissions for NTFS files and folders
HLOCAL LocalAlloc(
UINT uFlags,
SIZE_T uBytes
);
DECLARE INTEGER LocalAlloc IN kernel32;
INTEGER uFlags,;
INTEGER uBytes
uFlags [in] Memory allocation attributes.
uBytes [in] Number of bytes to allocate.
If the function succeeds, the return value is a handle to the newly allocated memory object.
Windows memory management does not provide a separate local heap and global heap.