summaryrefslogtreecommitdiff
path: root/server_communication.h
diff options
context:
space:
mode:
Diffstat (limited to 'server_communication.h')
-rw-r--r--server_communication.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/server_communication.h b/server_communication.h
index ecf1fdb..023ebd1 100644
--- a/server_communication.h
+++ b/server_communication.h
@@ -5,10 +5,10 @@
#include <glib.h>
-gboolean server_ping(struct server *server);
-gchar **server_find(struct server *server, const gchar *type, const gchar *str);
-gchar **server_list(struct server *server, const gchar *directory);
+gboolean server_ping(struct server *server, GError **error);
+gchar **server_find(struct server *server, const gchar *type, const gchar *str, GError **error);
+gchar **server_list(struct server *server, const gchar *directory, GError **error);
gboolean server_get(struct server *server, const gchar *type,
- const gchar *localfile, const gchar *remotefile);
+ const gchar *localfile, const gchar *remotefile, GError **error);
#endif