xbot/lib/module.h

40 lines
608 B
C
Raw Normal View History

#ifndef MODULE_H
#define MODULE_H
#include "irc.h"
2024-02-13 02:56:23 -08:00
#include "events.h"
#ifdef _WIN32
#include <windows.h>
#endif
2024-02-12 23:22:10 -08:00
struct module {
char *name;
char *author;
char *version;
char *description;
char *fname;
#ifdef _WIN32
HMODULE handle;
FARPROC init;
FARPROC unload;
#else
void *handle;
void (*init)();
void (*unload)();
#endif
};
struct mods {
int count;
struct module *modules;
2024-02-12 23:22:10 -08:00
};
void init_mods();
void load_module(struct irc_conn *bot, char *where, char *stype, char *file);
2024-02-16 22:03:20 -08:00
void unload_module(struct irc_conn *bot, char *where, char *file);
2024-02-12 23:22:10 -08:00
#endif