1 /*
2 ** Jabby (a C library for Jabber protocol)
3 ** Copyright (c) 2002 Hubert Soko�owski <who_ami@tlen.pl>
4 **
5 ** This code is free software; you can redistribute it and/or
6 ** modify it under the terms of the GNU General Public License.
7 **
8 */
9 
10 
11 #ifndef JABBY_EVENTS_H
12 #define JABBY_EVENTS_H
13 #include "jabby.h"
14 
15 
16 jabby_event *jabby_event_get();
17 jabby_event *jabby_event_new(enum jabby_event_type type);
18 void jabby_event_add(jabby_event *event);
19 jabby_event_agent* jabby_event_agent_new();
20 jabby_event_registered* jabby_event_registered_new();
21 
22 #endif
23