33 lines
593 B
C
33 lines
593 B
C
|
|
#ifndef _H_PLUG
|
|
#define _H_PLUG
|
|
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef void (*plug_init_f) (void);
|
|
typedef void (*plug_reload_f) (void);
|
|
typedef void (*plug_poll_f) (char*, size_t);
|
|
typedef void (*plug_free_f) (void);
|
|
|
|
typedef struct plug_t {
|
|
char* name;
|
|
char* version;
|
|
bool is_ready;
|
|
} plug_t;
|
|
|
|
typedef struct plug_int_t {
|
|
plug_init_f f_init;
|
|
plug_reload_f f_reload;
|
|
plug_poll_f f_poll;
|
|
plug_free_f f_free;
|
|
plug_t* s_plug_info;
|
|
} plug_int_t;
|
|
|
|
void setup_plugins(char* plugin_path);
|
|
char* poll_plugins(char* sep);
|
|
void free_plugins(void);
|
|
|
|
#endif
|
|
|