Group: Memory Management - Library: kernel32
Decrements the lock count associated with a memory object that was allocated with GMEM_MOVEABLE. This function has no effect on memory objects allocated with GMEM_FIXED.
Copying strings through the global memory block
Opening the Page Setup dialog box to specify the attributes of a printed page
Enumerating network resources
Passing data records between VFP applications via the Clipboard
BOOL GlobalUnlock(
HGLOBAL hMem // handle to global memory object
); DECLARE INTEGER GlobalUnlock IN kernel32;
INTEGER hMem hMem [in] Handle to the global memory object. This handle is returned by either the GlobalAlloc or GlobalReAlloc function.
If the memory object is still locked after decrementing the lock count, the return value is a nonzero value.
Home