GlobalUnlock function kernel32

int GlobalUnlock(
  1. Pointer<NativeType> hMem
)

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.

BOOL GlobalUnlock(
  HGLOBAL hMem
);

Implementation

int GlobalUnlock(Pointer hMem) => _GlobalUnlock(hMem);