| 123456789101112131415161718192021 |
- #ifndef _BOTMSG_H
- #define _BOTMSG_H
- #include "eggmain.h"
- #include "cfg.h"
- #ifndef MAKING_MODS
- void botnet_send_cfg(int idx, struct cfg_entry *entry);
- void botnet_send_cfg_broad(int idx, struct cfg_entry *entry);
- void putbot(char *, char *);
- void putallbots(char *);
- int add_note(char *, char *, char *, int, int);
- int simple_sprintf EGG_VARARGS(char *, arg1);
- void tandout_but EGG_VARARGS(int, arg1);
- char *int_to_base10(int);
- char *unsigned_int_to_base10(unsigned int);
- char *int_to_base64(unsigned int);
- #endif /* !MAKING_MODS */
- #endif /* !_BOTMSG_H */
|