1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
/*
* notify.h: header for notify.c
*
* Copyright 1990 Michael Sandrof
* Copyright 1997 EPIC Software Labs
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*/
#ifndef __notify_h__
#define __notify_h__
#include "alist.h"
struct notify_stru;
typedef struct notify_alist
{
struct notify_stru ** list;
int max;
int max_alloc;
alist_func func;
hash_type hash;
char * ison;
} NotifyList;
extern char notify_timeref[];
BUILT_IN_COMMAND(notify);
void do_notify (void);
void notify_mark (int, const char *, int, int);
void save_notify (FILE *);
void set_notify_handler (char *);
void make_notify_list (int);
char * get_notify_nicks (int, int);
void destroy_notify_list (int);
void notify_systimer (void);
void set_notify_interval (const void *);
void set_notify (const void *);
#endif /* _NOTIFY_H_ */
|