EXT_COMMAND_METHOD macro (engextcpp.hpp)

The EXT_COMMAND_METHOD macro declares an extension command from inside the definition of the EXT_CLASS class.

Syntax

void EXT_COMMAND_METHOD(
   _Name
);

Parameters

_Name

The name of the extension command. As with all extension commands, the name must consist entirely of lowercase letters.

Return value

None

Remarks

This macro must be used inside the definition of the EXT_CLASS class.

The macro EXT_COMMAND should be used to define the extension command. As with all C++ declarations, the EXT_COMMAND_METHOD declaration should appear in the source files before the EXT_COMMAND definition.

Requirements

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

See also

EXT_CLASS

EXT_COMMAND