Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The following code cleans up all memory associated with symbol handling for the specified process, using SymCleanup.
if (SymCleanup(hProcess))
{
// SymCleanup returned success
}
else
{
// SymCleanup failed
DWORD error = GetLastError();
printf("SymCleanup returned error : %d\n", error);
}