Debugging Tools for Windows |
The Initialize method is called by the engine to initialize an EngExtCpp extension library after loading it.
virtual HRESULT
ExtExtension::Initialize(
void
)
The extension library version number should be set by this method. This can be done by setting the members m_ExtMajorVersion and m_ExtMinorVersion of the base class ExtExtension.
The ExtExtension member m_KnownStructs should be set by this method to indicate to the engine which structures the extension library is capable of formatting for output.
If this method is defined in the extension library class EXT_CLASS, it can be used by the extension library to initialize any variables it requires.
There may or may not be a debugging session active when this function is called, so you should not assume that the extension can query session information.
Headers: Defined in Engextcpp.hpp. Include Engextcpp.hpp.