Help: Use stable 'if' namespace instead of experimental
[empathy-mirror.git] / tests / test-irc-helper.h
blob02eda91789ce35a189c5defd8dc00bfc3b82f121
1 #include <string.h>
3 #include <tp-account-widgets/tpaw-irc-network-manager.h>
5 #ifndef __CHECK_IRC_HELPER_H__
6 #define __CHECK_IRC_HELPER_H__
8 struct server_t
10 gchar *address;
11 guint port;
12 gboolean ssl;
15 void check_server (TpawIrcServer *server, const gchar *_address,
16 guint _port, gboolean _ssl);
18 void check_network (TpawIrcNetwork *network, const gchar *_name,
19 const gchar *_charset, struct server_t *_servers, guint nb_servers);
21 #endif /* __CHECK_IRC_HELPER_H__ */