aboutsummaryrefslogtreecommitdiffstats
path: root/src/TagPool.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/TagPool.hxx (renamed from src/tag_pool.h)13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/tag_pool.h b/src/TagPool.hxx
index a96c00d85..5d68a31d7 100644
--- a/src/tag_pool.h
+++ b/src/TagPool.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -17,21 +17,18 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#ifndef MPD_TAG_POOL_H
-#define MPD_TAG_POOL_H
+#ifndef MPD_TAG_POOL_HXX
+#define MPD_TAG_POOL_HXX
#include "tag.h"
+#include "thread/Mutex.hxx"
#include <glib.h>
-extern GMutex *tag_pool_lock;
+extern Mutex tag_pool_lock;
struct tag_item;
-void tag_pool_init(void);
-
-void tag_pool_deinit(void);
-
struct tag_item *
tag_pool_get_item(enum tag_type type, const char *value, size_t length);