2015-03-27 15:44:40 +00:00
|
|
|
#ifndef MODULE_H
|
|
|
|
#define MODULE_H
|
|
|
|
|
|
|
|
#include "irc.h"
|
|
|
|
|
2024-02-13 07:22:10 +00:00
|
|
|
struct module {
|
|
|
|
char *name;
|
|
|
|
//event_handler handlers[50];
|
|
|
|
};
|
2015-03-27 15:44:40 +00:00
|
|
|
|
2024-02-13 07:22:10 +00:00
|
|
|
typedef struct module module;
|
|
|
|
|
|
|
|
MY_API void load_module(struct irc_conn *bot, char *where, char *stype, char *file);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|