LocalFree function kernel32

Pointer<NativeType> LocalFree(
  1. Pointer<NativeType> hMem
)

Frees the specified local memory object and invalidates its handle.

HLOCAL LocalFree(
  _Frees_ptr_opt_ HLOCAL hMem
);

Implementation

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