aboutsummaryrefslogtreecommitdiffstats
path: root/src/sticker/StickerDatabase.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-01-28 19:33:56 +0100
committerMax Kellermann <max@duempel.org>2015-01-28 19:33:56 +0100
commit593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced (patch)
treedb35a7f10c5f9f0e01f59d928dc02c1b72db58e0 /src/sticker/StickerDatabase.hxx
parent822ac7b100e6d0ed876ec8c6dea09f3ab0809655 (diff)
downloadmpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.tar.gz
mpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.tar.xz
mpd-593bb5a8a7ba4c5a846a4443fe59ddeebdc45ced.zip
StickerDatabase: convert the struct name to upper case
Diffstat (limited to 'src/sticker/StickerDatabase.hxx')
-rw-r--r--src/sticker/StickerDatabase.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sticker/StickerDatabase.hxx b/src/sticker/StickerDatabase.hxx
index 29314d024..d9a5ecf11 100644
--- a/src/sticker/StickerDatabase.hxx
+++ b/src/sticker/StickerDatabase.hxx
@@ -49,7 +49,7 @@
class Error;
class Path;
-struct sticker;
+struct Sticker;
/**
* Opens the sticker database.
@@ -111,7 +111,7 @@ sticker_delete_value(const char *type, const char *uri, const char *name,
* @param sticker the sticker object to be freed
*/
void
-sticker_free(sticker *sticker);
+sticker_free(Sticker *sticker);
/**
* Determines a single value in a sticker.
@@ -122,7 +122,7 @@ sticker_free(sticker *sticker);
*/
gcc_pure
const char *
-sticker_get_value(const sticker &sticker, const char *name);
+sticker_get_value(const Sticker &sticker, const char *name);
/**
* Iterates over all sticker items in a sticker.
@@ -132,7 +132,7 @@ sticker_get_value(const sticker &sticker, const char *name);
* @param user_data an opaque pointer for the callback function
*/
void
-sticker_foreach(const sticker &sticker,
+sticker_foreach(const Sticker &sticker,
void (*func)(const char *name, const char *value,
void *user_data),
void *user_data);
@@ -144,7 +144,7 @@ sticker_foreach(const sticker &sticker,
* @param uri the URI of the resource, e.g. the song path
* @return a sticker object, or nullptr on error or if there is no sticker
*/
-sticker *
+Sticker *
sticker_load(const char *type, const char *uri,
Error &error);