panda_load_plugin

Function panda_load_plugin 

Source
pub unsafe extern "C" fn panda_load_plugin(
    filename: *const i8,
    plugin_name: *const i8,
) -> bool
Expand description

panda_load_plugin() - Load this plugin into panda. @filename: The path to the shared object plugin code. @plugin_name: The name of the plugin.

This will load the code for this plugin and run its init_plugin function.

Return: True if success, False otherwise.