aboutsummaryrefslogtreecommitdiffstats
path: root/src/storage/plugins/SmbclientStorage.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-05 19:23:38 +0100
committerMax Kellermann <max@duempel.org>2014-02-06 07:19:14 +0100
commit957beeb0e943f9bad9d5fae02545cf39bc9fc201 (patch)
treed23e66db0801c6389fd88685bef1717419b3bb5a /src/storage/plugins/SmbclientStorage.hxx
parent522ad4cca656d5efbd5c424eb995ec4784a3179f (diff)
downloadmpd-957beeb0e943f9bad9d5fae02545cf39bc9fc201.tar.gz
mpd-957beeb0e943f9bad9d5fae02545cf39bc9fc201.tar.xz
mpd-957beeb0e943f9bad9d5fae02545cf39bc9fc201.zip
storage/smbclient: Storage implementation using libsmbclient
Diffstat (limited to 'src/storage/plugins/SmbclientStorage.hxx')
-rw-r--r--src/storage/plugins/SmbclientStorage.hxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/storage/plugins/SmbclientStorage.hxx b/src/storage/plugins/SmbclientStorage.hxx
new file mode 100644
index 000000000..3a77ebf1d
--- /dev/null
+++ b/src/storage/plugins/SmbclientStorage.hxx
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2003-2014 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_STORAGE_SMBCLIENT_HXX
+#define MPD_STORAGE_SMBCLIENT_HXX
+
+#include "check.h"
+
+class Error;
+class Storage;
+
+Storage *
+CreateSmbclientStorage(const char *base, Error &error);
+
+#endif