LocalFree function kernel32

int LocalFree(
  1. int hMem
)

Frees the specified local memory object and invalidates its handle.

HLOCAL LocalFree(
  _Frees_ptr_opt_ HLOCAL hMem
);

Implementation

int LocalFree(int hMem) => _LocalFree(hMem);