diff options
author | Max Kellermann <max@duempel.org> | 2013-10-17 10:20:57 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-17 10:20:57 +0200 |
commit | 24780d99e61af44141e8f0d0d0776a1c994e6770 (patch) | |
tree | 23cc5597c41d9031eb74892ef7d7c0e5eceb05fd /src/archive | |
parent | 7c1cf617282c591dff85df164c178198a0ce7738 (diff) | |
download | mpd-24780d99e61af44141e8f0d0d0776a1c994e6770.tar.gz mpd-24780d99e61af44141e8f0d0d0776a1c994e6770.tar.xz mpd-24780d99e61af44141e8f0d0d0776a1c994e6770.zip |
input_plugin: rename struct to "InputPlugin"
Diffstat (limited to 'src/archive')
-rw-r--r-- | src/archive/Bzip2ArchivePlugin.cxx | 4 | ||||
-rw-r--r-- | src/archive/Iso9660ArchivePlugin.cxx | 4 | ||||
-rw-r--r-- | src/archive/ZzipArchivePlugin.cxx | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/archive/Bzip2ArchivePlugin.cxx b/src/archive/Bzip2ArchivePlugin.cxx index 45cdec87c..61e31a671 100644 --- a/src/archive/Bzip2ArchivePlugin.cxx +++ b/src/archive/Bzip2ArchivePlugin.cxx @@ -109,7 +109,7 @@ struct Bzip2InputStream { void Close(); }; -extern const struct input_plugin bz2_inputplugin; +extern const InputPlugin bz2_inputplugin; static constexpr Domain bz2_domain("bz2"); @@ -276,7 +276,7 @@ static const char *const bz2_extensions[] = { NULL }; -const struct input_plugin bz2_inputplugin = { +const InputPlugin bz2_inputplugin = { nullptr, nullptr, nullptr, diff --git a/src/archive/Iso9660ArchivePlugin.cxx b/src/archive/Iso9660ArchivePlugin.cxx index bb49f4add..4359256e5 100644 --- a/src/archive/Iso9660ArchivePlugin.cxx +++ b/src/archive/Iso9660ArchivePlugin.cxx @@ -72,7 +72,7 @@ public: Error &error) override; }; -extern const struct input_plugin iso9660_input_plugin; +extern const InputPlugin iso9660_input_plugin; static constexpr Domain iso9660_domain("iso9660"); @@ -239,7 +239,7 @@ static const char *const iso9660_archive_extensions[] = { NULL }; -const struct input_plugin iso9660_input_plugin = { +const InputPlugin iso9660_input_plugin = { nullptr, nullptr, nullptr, diff --git a/src/archive/ZzipArchivePlugin.cxx b/src/archive/ZzipArchivePlugin.cxx index de2c62b5b..ebac331b5 100644 --- a/src/archive/ZzipArchivePlugin.cxx +++ b/src/archive/ZzipArchivePlugin.cxx @@ -66,7 +66,7 @@ public: Error &error) override; }; -extern const struct input_plugin zzip_input_plugin; +extern const InputPlugin zzip_input_plugin; static constexpr Domain zzip_domain("zzip"); @@ -202,7 +202,7 @@ static const char *const zzip_archive_extensions[] = { NULL }; -const struct input_plugin zzip_input_plugin = { +const InputPlugin zzip_input_plugin = { nullptr, nullptr, nullptr, |