xbot/lib/module.h

17 lines
248 B
C
Raw Normal View History

#ifndef MODULE_H
#define MODULE_H
#include "irc.h"
2024-02-12 23:22:10 -08:00
struct module {
char *name;
//event_handler handlers[50];
};
2024-02-12 23:22:10 -08:00
typedef struct module module;
MY_API void load_module(struct irc_conn *bot, char *where, char *stype, char *file);
#endif