RtlDestroyHandleTable (NTDLL.@)
NTSTATUS RtlDestroyHandleTable ( RTL_HANDLE_TABLE* HandleTable )
Destroys a handle table and frees associated resources.
HandleTable | [In] | The handle table. |
Any status code returned by NtFreeVirtualMemory.
The native version of this Api doesn't free the virtual memory that has been previously reserved, only the committed memory. There is no harm in also freeing the reserved memory because it won't have been handed out to any callers. I believe it is "more polite" to free everything.
Declared in "include/winternl.h". gitlab.winehq.org/wine/wine/blob/master/include/winternl.h
Implemented in "dlls/ntdll/handletable.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/handletable.c
Debug channel "ntdll".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.