#include <ofxCore.h>
This structure is the first element in any plug-in structure using the OFX plug-in architecture. By examining it's members a host can determine the API that the plug-in implements, the version of that API, it's name and version.
For details see Architecture.
Public Attributes | |
| const char * | pluginApi |
| int | apiVersion |
| const char * | pluginIdentifier |
| unsigned int | pluginVersionMajor |
| unsigned int | pluginVersionMinor |
| void(* | setHost )(OfxHost *host) |
| Function the host uses to connect the plug-in to the host's api fetcher. | |
| OfxPluginEntryPoint * | mainEntry |
| Main entry point for plug-ins. | |
|
|
Defines the version of the pluginApi that this plug-in implements |
|
|
Main entry point for plug-ins. Mandatory function. The exact set of actions is determined by the plug-in API that is being implemented, however all plug-ins can perform several actions. For the list of actions consult OFX Actions. Preconditions
|
|
|
Defines the type of the plug-in, this will tell the host what the plug-in does. e.g.: an image effects plug-in would be a "OfxImageEffectPlugin" |
|
|
String that uniquely labels the plug-in among all plug-ins that implement an API. It need not necessarily be human sensible, however the preference is to use reverse internet domain name of the developer, followed by a '.' then by a name that represents the plug-in.. It must be a legal ASCII string and have no whitespace in the name and no non printing chars. For example "uk.co.somesoftwarehouse.myPlugin" |
|
|
Major version of this plug-in, this gets incremented when backwards compatibility is broken. |
|
|
Major version of this plug-in, this gets incremented when software is changed, but does not break backwards compatibility. |
|
|
Function the host uses to connect the plug-in to the host's api fetcher.
The very first function called in a plug-in. The plug-in must not call any OFX functions within this, it must only set it's local copy of the host pointer.
|