PDEBUG_EXTENSION_UNLOAD callback function (dbgeng.h)

The DebugExtensionUnload callback function unloads the debug extension.

 CALLBACK* PDEBUG_EXTENSION_UNLOAD DebugExtensionUnload;

Syntax

PDEBUG_EXTENSION_UNLOAD PdebugExtensionUnload;

void PdebugExtensionUnload()
{...}

Return value

None

Remarks

If and only if DebugExtensionCanUnload is present in the debugger extension, this callback function is called after a successful DebugExtensionCanUnload call, immediately before the debugger actually unloads the extension DLL.

DebugExtensionUnload is called PDEBUG_EXTENSION_UNLOAD in the Dbgeng.h header file.

Requirements

Requirement Value
Target Platform Windows
Header dbgeng.h (include Dbgeng.h)

See also

DebugExtensionCanUnload