シンボル ハンドラーの終了
次のコードは、SymCleanup を使用して、指定されたプロセスのシンボル処理に関連付けられたすべてのメモリをクリーンアップします。
if (SymCleanup(hProcess))
{
// SymCleanup returned success
}
else
{
// SymCleanup failed
DWORD error = GetLastError();
printf("SymCleanup returned error : %d\n", error);
}