aboutsummaryrefslogtreecommitdiffstats
path: root/src/archive/bz2_archive_plugin.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-12-16 16:11:45 +0100
committerMax Kellermann <max@duempel.org>2009-12-16 15:57:16 +0100
commitb04adde7ab6a2d69272f10d98def072e346156df (patch)
tree826d2023fb8e3f37e20d35aa21e749816c4d1a75 /src/archive/bz2_archive_plugin.h
parent3f64ac04b80d0a75b2c2c45efb31cb3a8e7eb8ff (diff)
downloadmpd-b04adde7ab6a2d69272f10d98def072e346156df.tar.gz
mpd-b04adde7ab6a2d69272f10d98def072e346156df.tar.xz
mpd-b04adde7ab6a2d69272f10d98def072e346156df.zip
archive: added a C header for each plugin
Moved the archive plugin "extern" declarations into each plugin header.
Diffstat (limited to 'src/archive/bz2_archive_plugin.h')
-rw-r--r--src/archive/bz2_archive_plugin.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/archive/bz2_archive_plugin.h b/src/archive/bz2_archive_plugin.h
new file mode 100644
index 000000000..42b0c48ed
--- /dev/null
+++ b/src/archive/bz2_archive_plugin.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2003-2009 The Music Player Daemon Project
+ * http://www.musicpd.org
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef MPD_ARCHIVE_BZ2_H
+#define MPD_ARCHIVE_BZ2_H
+
+extern const struct archive_plugin bz2_archive_plugin;
+
+#endif