pub fn lib_hexchat_plugin_get_info(
    name: *mut *const i8,
    desc: *mut *const i8,
    version: *mut *const i8,
    _reserved: *mut *const i8,
    callback: Box<InfoFn>
)
Expand description

Called indirectly when a plugin is loaded to get info about it. The plugin author shouldn’t invoke this fuction - it’s only public because the dll_entry_points() macro generates code that calls this. This function calls the client plugin’s plugin_get_info() indirectly to obtain the persistent plugin info strings that it sets the paramters to.