SymCleanup function dbghelp
Deallocates all resources associated with the process handle.
To learn more, see learn.microsoft.com/windows/win32/api/dbghelp/nf-dbghelp-symcleanup.
Implementation
Win32Result<bool> SymCleanup(HANDLE hProcess) {
final result_ = SymCleanup_Wrapper(hProcess);
return .new(value: result_.value.i32 != FALSE, error: result_.error);
}