ExtExtension::OnSessionInactive method (engextcpp.hpp)

The OnSessionInactive method is called by the engine to inform the EngExtCpp extension library when the debugging session becomes inactive.

Syntax

void __thiscall OnSessionInactive(
  [in] ULONG64 Argument
);

Parameters

[in] Argument

Set to zero. (Reserved for future use).

Return value

This method does not return a value.

Remarks

If this method is defined in the extension library class EXT_CLASS, it can be used to allow the extension library to cache information about the session without the need to register event callbacks.

This method is called at the end of a session.

Requirements

Requirement Value
Target Platform Desktop
Header engextcpp.hpp (include Engextcpp.hpp)

See also

EXT_CLASS

ExtExtension

OnSessionActive