Debugging Tools for Windows |
The DebugExtensionUninitialize callback function is called by the engine to uninitialize the DbgEng extension DLL before it is unloaded.
void
CALLBACK
DebugExtensionUninitialize(
void
);
None
This function is optional. A DbgEng extension DLL only needs to export DebugExtensionUninitialize if it needs to be notified before it is unloaded. The engine looks for this function by name in the extension DLL.
This function can be used by the extension DLL to clean up before it is unloaded.
There may or may not be a session active when this function is called, so the extension should not assume that it is able to query session information.
Headers: The function type is defined as PDEBUG_EXTENSION_UNINITIALIZE in dbgeng.h.