HeapUnlock function kernel32

int HeapUnlock(
  1. int hHeap
)

Releases ownership of the critical section object, or lock, that is associated with a specified heap. It reverses the action of the HeapLock function.

BOOL HeapUnlock(
  HANDLE hHeap
);

Implementation

int HeapUnlock(int hHeap) => _HeapUnlock(hHeap);