]> git.0d.be Git - empathy.git/blob - tests/test-irc-helper.h
Updated Oriya translation
[empathy.git] / tests / test-irc-helper.h
1 #include <string.h>
2
3 #include <tp-account-widgets/tpaw-irc-network-manager.h>
4
5 #ifndef __CHECK_IRC_HELPER_H__
6 #define __CHECK_IRC_HELPER_H__
7
8 struct server_t
9 {
10   gchar *address;
11   guint port;
12   gboolean ssl;
13 };
14
15 void check_server (TpawIrcServer *server, const gchar *_address,
16     guint _port, gboolean _ssl);
17
18 void check_network (TpawIrcNetwork *network, const gchar *_name,
19     const gchar *_charset, struct server_t *_servers, guint nb_servers);
20
21 #endif /* __CHECK_IRC_HELPER_H__ */