|
SENTRY_START_PLUGIN - Passed when Sentry is loading the plugin when it is initially displayed. Sentry will pass four additional command line parameters after 'SENTRY_START_PLUGIN' which correspond with the top coordinate, left coordinate, height and width, respectively. In HTML layout, it will also pass any additional command line options that you give it.
SENTRY_STOP_PLUGIN - Passed when Sentry is shutting down and the
plugin is to be closed. This will be called one time for every instance
of each plugin.
SENTRY_CONFIGURE - Passed when a user clicks the "Configure" button in
the Sentry Plugin Manager. This should open a settings/configuration window for
the plugin.
sentry plugins must be placed in the Plugins folder under where Sentry was installed.
<!--SENTRYPLUGIN PluginName 10 10 100 100 -->In an INI Layout...
[Plugin] left=10 top=10 width=100 height=100 filename=PluginName
For more help creating a Sentry plugin, see the included example source code.