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 unloads a symbol module referred to by the BaseOfDll module address using SymUnloadModule64.
if (SymUnloadModule64(hProcess, BaseOfDll))
{
// SymUnloadModule64 returned success
}
else
{
// SymUnloadModule64 failed
DWORD error = GetLastError();
printf("SymUnloadModule64 returned error : %d\n", error);
}
Related topics