botmsg.h 478 B

123456789101112131415161718
  1. #ifndef _BOTMSG_H
  2. #define _BOTMSG_H
  3. #include "common.h"
  4. #include "set.h"
  5. /* Return codes for add_note */
  6. #define NOTE_ERROR 0 /* error */
  7. #define NOTE_OK 1 /* success */
  8. void botnet_send_var(int idx, variable_t *);
  9. void botnet_send_var_broad(int idx, variable_t *);
  10. void putbot(const char *, char *);
  11. void putallbots(const char *);
  12. int add_note(char *, char *, char *, int, int);
  13. #endif /* !_BOTMSG_H */