chanprog.h 662 B

123456789101112131415161718192021222324252627
  1. #ifndef _CHANPROG_H
  2. #define _CHANPROG_H
  3. #ifndef MAKING_MODS
  4. void do_chanset(struct chanset_t *, char *, int);
  5. void checkchans(int);
  6. void tell_verbose_uptime(int);
  7. void tell_verbose_status(int);
  8. void tell_settings(int);
  9. int logmodes(char *);
  10. int isowner(char *);
  11. char *masktype(int);
  12. char *maskname(int);
  13. void reaffirm_owners();
  14. void rehash();
  15. void reload();
  16. void chanprog();
  17. void check_timers();
  18. void check_utimers();
  19. void rmspace(char *s);
  20. void set_chanlist(const char *host, struct userrec *rec);
  21. void clear_chanlist(void);
  22. void clear_chanlist_member(const char *nick);
  23. int shouldjoin(struct chanset_t *);
  24. #endif /* !MAKING_MODS */
  25. #endif /* !_CHANPROG_H */