Skip to Content

bz_ePluginLoaded

This event is called after a plug-in's Init() method is called and has been successfully loaded.

Data Object Type

2.4.0 bz_PluginLoadUnloadEventData_V1

Parameters

These are the values accessible in the bz_EventData variable that's made available in the Event method.

Data Type Name Description
bz_Plugin* plugin

A pointer to the plug-in class that was loaded.

double eventTime

The time of the event.

Plug-in Usage

There are no plug-ins in the official distribution that make use of this event. Browse the Plug-in Releases forum for plug-ins which may make use of this event.

Plug-in Example

This block of code can be used to get started when implementing the Event() function of your plug-in.

bz_PluginLoadUnloadEventData_V1* dataObject = (bz_PluginLoadUnloadEventData_V1*)eventData;

// Data
// ---
// (bz_Plugin*)   plugin - A pointer to the plug-in class that was loaded.
// (double)       eventTime - The time of the event.

Other Plug-ins Events

Back to bzfs API Events

This content is maintained on GitHub. We welcome any feedback and improvements!

Give us Feedback Edit this Page