ant-http/plugin_manager.h

13 lines
333 B
C
Raw Normal View History

2017-07-29 22:00:34 +02:00
#ifndef PLUGIN_MANAGER_H
#define PLUGIN_MANAGER_H
#include "lib/dictionary.h"
#include "lib/plugin.h"
#include "lib/scheduler.h"
typedef void*(*antd_plugin_handle_t)(void *);
2024-03-12 21:59:50 +01:00
antd_plugin_ctx_t *antd_plugin_load(const char *name);
void antd_unload_all_plugin();
antd_plugin_handle_t antd_get_ctx_handle(antd_plugin_ctx_t *);
2017-07-29 22:00:34 +02:00
#endif