aboutsummaryrefslogtreecommitdiffstats
path: root/src/sticker.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-08-02 18:20:46 +0200
committerMax Kellermann <max@duempel.org>2012-08-02 19:12:06 +0200
commitedf811fa0271da729e9962e3976f2a68ac35a395 (patch)
treeedae1c9330ea0bdc7eff132ef15deed6a20fc8d8 /src/sticker.h
parentb25b7693baa8be5ab7f0fc727f17fb560b6208ae (diff)
downloadmpd-edf811fa0271da729e9962e3976f2a68ac35a395.tar.gz
mpd-edf811fa0271da729e9962e3976f2a68ac35a395.tar.xz
mpd-edf811fa0271da729e9962e3976f2a68ac35a395.zip
DatabaseVisitor, ...: use GError forward declaration
Diffstat (limited to 'src/sticker.h')
-rw-r--r--src/sticker.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sticker.h b/src/sticker.h
index 5545206a5..66f12294b 100644
--- a/src/sticker.h
+++ b/src/sticker.h
@@ -42,7 +42,7 @@
#ifndef STICKER_H
#define STICKER_H
-#include <glib.h>
+#include "gerror.h"
#include <stdbool.h>
@@ -127,8 +127,8 @@ sticker_get_value(const struct sticker *sticker, const char *name);
void
sticker_foreach(const struct sticker *sticker,
void (*func)(const char *name, const char *value,
- gpointer user_data),
- gpointer user_data);
+ void *user_data),
+ void *user_data);
/**
* Loads the sticker for the specified resource.
@@ -153,7 +153,7 @@ sticker_load(const char *type, const char *uri);
bool
sticker_find(const char *type, const char *base_uri, const char *name,
void (*func)(const char *uri, const char *value,
- gpointer user_data),
- gpointer user_data);
+ void *user_data),
+ void *user_data);
#endif