ExtExtension::Uninitialize method (engextcpp.hpp)

The Uninitialize method is called by the engine to uninitialize an EngExtCpp extension library before it is unloaded.

Syntax

void __thiscall Uninitialize();

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 by the extension library to clean up before it is unloaded.

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

Initialize