/* IRCfs - IRC FileServ for *nix. * Copyright (C) 2002 Nick 'Zaf' Clifford * For licensing details, refer to the LICENSE file in the source * code directory. */ #ifndef __include_stats_h__ #define __include_stats_h__ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "magic.h" #include struct stats_request; enum stats_events { stats_event_request, stats_event_request_unknown, }; #define MAGIC_STATS_EVENT_MSG 0xA4D26654 struct stats_event_msg { MAGIC magic; struct stats_request *request; const char *str; }; struct eventobj *stats_get_eventobj(); #endif