aboutsummaryrefslogtreecommitdiffstats
path: root/src/TagPool.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-07-30 20:11:57 +0200
committerMax Kellermann <max@duempel.org>2013-07-30 20:19:53 +0200
commit06f898cc1240a29b293de0e97ad95a4fdc971254 (patch)
tree001a6d3db039cdc03323f3bfddc13b94bde31ce4 /src/TagPool.hxx
parent6a9ab8bc0e2f5d34803513bb2d94d041a607a58c (diff)
downloadmpd-06f898cc1240a29b293de0e97ad95a4fdc971254.tar.gz
mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.tar.xz
mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.zip
tag: convert to C++
Diffstat (limited to 'src/TagPool.hxx')
-rw-r--r--src/TagPool.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/TagPool.hxx b/src/TagPool.hxx
index 3a6897607..a6b28b355 100644
--- a/src/TagPool.hxx
+++ b/src/TagPool.hxx
@@ -25,13 +25,15 @@
extern Mutex tag_pool_lock;
-struct tag_item;
+struct TagItem;
-struct tag_item *
+TagItem *
tag_pool_get_item(enum tag_type type, const char *value, size_t length);
-struct tag_item *tag_pool_dup_item(struct tag_item *item);
+TagItem *
+tag_pool_dup_item(TagItem *item);
-void tag_pool_put_item(struct tag_item *item);
+void
+tag_pool_put_item(TagItem *item);
#endif