botmsg.h 560 B

123456789101112131415161718192021
  1. #ifndef _BOTMSG_H
  2. #define _BOTMSG_H
  3. #include "eggmain.h"
  4. #include "cfg.h"
  5. #ifndef MAKING_MODS
  6. void botnet_send_cfg(int idx, struct cfg_entry *entry);
  7. void botnet_send_cfg_broad(int idx, struct cfg_entry *entry);
  8. void putbot(char *, char *);
  9. void putallbots(char *);
  10. int add_note(char *, char *, char *, int, int);
  11. int simple_sprintf EGG_VARARGS(char *, arg1);
  12. void tandout_but EGG_VARARGS(int, arg1);
  13. char *int_to_base10(int);
  14. char *unsigned_int_to_base10(unsigned int);
  15. char *int_to_base64(unsigned int);
  16. #endif /* !MAKING_MODS */
  17. #endif /* !_BOTMSG_H */