12 lines
497 B
C
12 lines
497 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "plugin_manager_config.h"
|
||
|
|
|
||
|
|
struct plugin_manager_module;
|
||
|
|
|
||
|
|
struct plugin_manager_module *plugin_manager_module_open(struct plugin_manager_config *config);
|
||
|
|
int plugin_manager_module_register(struct plugin_manager *plug_mgr, struct plugin_manager_module *module);
|
||
|
|
int plugin_manager_module_init(struct plugin_manager_module *module);
|
||
|
|
|
||
|
|
void plugin_manager_module_exit(struct plugin_manager_module *module);
|
||
|
|
void plugin_manager_module_close(struct plugin_manager_module *module);
|