pub unsafe extern "C" fn panda_init_plugin(
plugin_name: *mut i8,
plugin_args: *mut *mut i8,
num_args: u32,
) -> i32Expand description
panda_init_plugin() - Initialize a plugin by name. @plugin_name: The name of the plugin. @plugin_args: The array of string arguments. @num_args: The number of arguments.
Initialize this plugin with these arguments, which sets the arguments as if they had come in on the panda commandline and then loads the plugin.
XXX: Rename to load_plugin ?