From 06f898cc1240a29b293de0e97ad95a4fdc971254 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 30 Jul 2013 20:11:57 +0200 Subject: tag: convert to C++ --- src/TagPool.hxx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/TagPool.hxx') 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 -- cgit v1.2.3