ExtExtension::Initialize method (engextcpp.hpp)

The Initialize method is called by the engine to initialize an EngExtCpp extension library after loading it.

Syntax

HRESULT __thiscall Initialize();

Return value

This method can return one of these values.

Return code Description
S_OK
The extension library was successfully initialized.

Remarks

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.

Requirements

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

See also

EXT_CLASS

ExtExtension

Uninitialize