SymbolServerClose function
An entry point to the symbol server DLL. It is called every time the SymCleanup function is called.
The PSYMBOLSERVERCLOSEPROC type defines a pointer to this callback function. SymbolServerClose is a placeholder for the library-defined function name.
Syntax
BOOL WINAPI SymbolServerClose(void);
Parameters
This function has no parameters.
Return value
The server can return TRUE to indicate success, or return FALSE and call the SetLastError function to indicate an error condition.
Remarks
To call this function, you must use the LoadLibrary function to load the DLL and the GetProcAddress function to get the address of the function. The default implementation is in Symsrv.dll.
Requirements
Redistributable |
DbgHelp.dll 5.1 or later |
Header |
DbgHelp.h |
DLL |
SymSrv.dll |