aboutsummaryrefslogtreecommitdiffstats
path: root/src/PlaylistFile.hxx
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/PlaylistFile.hxx (renamed from src/PlaylistFile.h)14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/PlaylistFile.h b/src/PlaylistFile.hxx
index ddd2a47ec..b20f0d762 100644
--- a/src/PlaylistFile.h
+++ b/src/PlaylistFile.hxx
@@ -17,14 +17,12 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#ifndef MPD_STORED_PLAYLIST_H
-#define MPD_STORED_PLAYLIST_H
+#ifndef MPD_PLAYLIST_FILE_HXX
+#define MPD_PLAYLIST_FILE_HXX
-#ifdef __cplusplus
#include <list>
#include <vector>
#include <string>
-#endif
#include <glib.h>
#include <stdbool.h>
@@ -32,8 +30,6 @@
struct song;
-#ifdef __cplusplus
-
struct PlaylistFileInfo {
std::string name;
@@ -44,20 +40,14 @@ typedef std::list<PlaylistFileInfo> PlaylistFileList;
typedef std::vector<std::string> PlaylistFileContents;
-#endif
-
extern bool playlist_saveAbsolutePaths;
-G_BEGIN_DECLS
-
/**
* Perform some global initialization, e.g. load configuration values.
*/
void
spl_global_init(void);
-G_END_DECLS
-
#ifdef __cplusplus
/**