db_save, state_file: convert to C++

This commit is contained in:
Max Kellermann
2013-01-02 19:52:57 +01:00
parent 4b0b8315a9
commit b715e522cf
26 changed files with 120 additions and 106 deletions

View File

@@ -18,16 +18,19 @@
*/
#include "config.h"
#include "TagSave.hxx"
#include "song.h"
extern "C" {
#include "io_thread.h"
#include "input_init.h"
#include "input_stream.h"
#include "tag_save.h"
#include "conf.h"
#include "song.h"
#include "decoder_api.h"
#include "decoder_list.h"
#include "playlist_list.h"
#include "playlist_plugin.h"
}
#include <glib.h>

View File

@@ -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
@@ -18,17 +18,20 @@
*/
#include "config.h"
#include "TagSave.hxx"
#include "stdbin.h"
extern "C" {
#include "io_thread.h"
#include "input_init.h"
#include "input_stream.h"
#include "tag_save.h"
#include "tag.h"
#include "conf.h"
#include "stdbin.h"
#ifdef ENABLE_ARCHIVE
#include "archive_list.h"
#endif
}
#include <glib.h>