summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-01-31 16:34:42 +0000
committerRoss Burton <ross@linux.intel.com>2010-03-18 17:49:30 +0000
commitcb7410e7af1a1b9f5615f8e12aaed0274e0ba2d4 (patch)
treeef68365b10ebc94ef0ebfcd3641985887904da28 /examples
parent3fae6c5958d868fca20dcb7f79b0568d7c32985f (diff)
downloadgupnp-cb7410e7af1a1b9f5615f8e12aaed0274e0ba2d4.tar.gz
gcc warning fixes
Diffstat (limited to 'examples')
-rw-r--r--examples/light-server.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/light-server.c b/examples/light-server.c
index 2c918e3..dc416c5 100644
--- a/examples/light-server.c
+++ b/examples/light-server.c
@@ -15,6 +15,20 @@
static gboolean status;
+G_MODULE_EXPORT void set_target_cb (GUPnPService *service,
+ GUPnPServiceAction *action,
+ gpointer user_data);
+G_MODULE_EXPORT void get_target_cb (GUPnPService *service,
+ GUPnPServiceAction *action,
+ gpointer user_data);
+G_MODULE_EXPORT void get_status_cb (GUPnPService *service,
+ GUPnPServiceAction *action,
+ gpointer user_data);
+G_MODULE_EXPORT void query_target_cb (GUPnPService *service, char *variable,
+ GValue *value, gpointer user_data);
+G_MODULE_EXPORT void query_status_cb (GUPnPService *service, char *variable,
+ GValue *value, gpointer user_data);
+
/*
* Action handlers
*/