diff options
author | Max Kellermann <max@duempel.org> | 2013-07-26 12:09:17 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-26 12:52:51 +0200 |
commit | 1fcf35ad3b10c241b8b5266c46a5fe99ce2c57d9 (patch) | |
tree | a9bd895a18a34d83512ed6568e7ea730938c5987 /test/dump_rva2.cxx | |
parent | c8054e569ae64f7d84940f9c7cb7ef3e642b1e0c (diff) | |
download | mpd-1fcf35ad3b10c241b8b5266c46a5fe99ce2c57d9.tar.gz mpd-1fcf35ad3b10c241b8b5266c46a5fe99ce2c57d9.tar.xz mpd-1fcf35ad3b10c241b8b5266c46a5fe99ce2c57d9.zip |
tag_rva2: convert to C++
Diffstat (limited to '')
-rw-r--r-- | test/dump_rva2.cxx (renamed from test/dump_rva2.c) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/dump_rva2.c b/test/dump_rva2.cxx index 6e978c424..e58b8cd30 100644 --- a/test/dump_rva2.c +++ b/test/dump_rva2.cxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2012 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,8 +18,10 @@ */ #include "config.h" +extern "C" { #include "tag_id3.h" -#include "tag_rva2.h" +} +#include "TagRva2.hxx" #include "replay_gain_info.h" #include "conf.h" #include "tag.h" |