Base interface of any engine plugin. More...
#include <DGLE.h>
Public Member Functions | |
virtual DGLE_RESULT DGLE_API | GetPluginInfo (TPluginInfo &stInfo)=0 |
Returns structure with plugin description. | |
virtual DGLE_RESULT DGLE_API | GetPluginInterfaceName (char *pcName, uint &uiCharsCount)=0 |
Returns the name of interface which plugin implements or empty string if it implements nothing. | |
![]() | |
virtual DGLE_RESULT DGLE_API | GetGUID (GUID &guid)=0 |
Returns unique identifier of the last interface in the inheritance chain. | |
virtual DGLE_RESULT DGLE_API | ExecuteCommand (uint uiCmd, TVariant &stVar)=0 |
Executes some command using its index or bitmask. | |
virtual DGLE_RESULT DGLE_API | ExecuteTextCommand (const char *pcCommand, TVariant &stVar)=0 |
Executes some text command and returns result as variant. | |
virtual DGLE_RESULT DGLE_API | ExecuteTextCommandEx (const char *pcCommand, char *pcResult, uint &uiCharsCount)=0 |
Executes some text command and returns result as string. | |
Base interface of any engine plugin.
|
pure virtual |
Returns structure with plugin description.
[out] | stInfo | Structure in which plugin description will be stored. |
|
pure virtual |
Returns the name of interface which plugin implements or empty string if it implements nothing.
[out] | pcName | Pointer to allocated string. |
[in,out] | uiCharsCount | Count of the chars in allocated string. |