![]() |
Hot Door CORE 0.8.3
Adobe® Illustrator® Plug-in Library
|
Header file for various plugin entry points. More...
#include "hdicoreTypes.h"
Functions | |
void | hdi::core::pluginLoaded () |
Write this function yourself to receive a call immediately after your plugin dynamic library is loaded by the parent application (i.e. before setup/startup has begun) | |
bool | hdi::core::pluginSetup (Plugin *const plugin_) |
Write this function yourself to receive a call immediately after the Plugin instance is instantiated and before Plugin::__startup() is called. | |
void | hdi::core::pluginDestroy (Plugin *const plugin_) |
Write this function yourself to receive a call immediately after the Plugin instance has been shutdown but before it is unloaded (after Plugin::__shutdown() is called) | |
__HDI_CORE_EXPORT __MainError | PluginMain (const char *caller_, const char *selector_, void *data_) |
Main entry point for all plugins (required by Illustrator). This is called whenever a plugin should perform some action or respond to some message. | |
Header file for various plugin entry points.
void hdi::core::pluginDestroy | ( | Plugin *const | plugin_ | ) |
Write this function yourself to receive a call immediately after the Plugin instance has been shutdown but before it is unloaded (after Plugin::__shutdown() is called)
plugin_ | Current plugin object |
void hdi::core::pluginLoaded | ( | ) |
Write this function yourself to receive a call immediately after your plugin dynamic library is loaded by the parent application (i.e. before setup/startup has begun)
__HDI_CORE_EXPORT __MainError PluginMain | ( | const char * | caller_, |
const char * | selector_, | ||
void * | data_ | ||
) |
Main entry point for all plugins (required by Illustrator). This is called whenever a plugin should perform some action or respond to some message.
bool hdi::core::pluginSetup | ( | Plugin *const | plugin_ | ) |
Write this function yourself to receive a call immediately after the Plugin instance is instantiated and before Plugin::__startup() is called.
plugin_ | Recently-instantiated plugin object |