GetPluginType

Description

GetPluginType specifies the type of your plugin. For a HOA Plugin, the type is "HOA".

Syntax

int GetPluginType(wchar_t*& owszType);

Parameters

Output

owszType: type of plugin (HOA for a HOA Plugin).

Return

(int): returns the identification number of the error if an error occurs or 0 if no error occurs.

Example

To get a full example of the API use, download the .Plugin

#define OPT_PLUGIN_NO_ERROR 0
int GetPluginType(wchar_t*& owszType)
{
     owszType = L"HOA";
     return OPT_PLUGIN_NO_ERROR;
}