SymbolServerClose Callback 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.
BOOL WINAPI SymbolServerClose(void);
Parameters
This callback 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 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 |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.