MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / LocalFree

Function LocalFree

pydevd_attach_to_process/winappdbg/win32/kernel32.py:2298–2305  ·  view source on GitHub ↗
(hMem)

Source from the content-addressed store, hash-verified

2296# __in HLOCAL hMem
2297# );
2298def LocalFree(hMem):
2299 _LocalFree = windll.kernel32.LocalFree
2300 _LocalFree.argtypes = [HLOCAL]
2301 _LocalFree.restype = HLOCAL
2302
2303 result = _LocalFree(hMem)
2304 if result != NULL:
2305 ctypes.WinError()
2306
2307
2308# ------------------------------------------------------------------------------

Callers 3

CommandLineToArgvWFunction · 0.90
ConvertSidToStringSidAFunction · 0.85
ConvertSidToStringSidWFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected