aboutsummaryrefslogtreecommitdiffstats
path: root/src/storage/plugins/LocalStorage.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-02-05 19:23:02 +0100
committerMax Kellermann <max@duempel.org>2014-02-07 23:46:15 +0100
commita0088ccce1749dbef6503fbf489f7096d824c11d (patch)
treec2a8e4ed79ee62bfb70cfbfcd1aefa035219e609 /src/storage/plugins/LocalStorage.hxx
parentbe081929f4523376db2df52903230d3b20dc54e9 (diff)
downloadmpd-a0088ccce1749dbef6503fbf489f7096d824c11d.tar.gz
mpd-a0088ccce1749dbef6503fbf489f7096d824c11d.tar.xz
mpd-a0088ccce1749dbef6503fbf489f7096d824c11d.zip
storage: add struct StoragePlugin and a plugin registry
Diffstat (limited to 'src/storage/plugins/LocalStorage.hxx')
-rw-r--r--src/storage/plugins/LocalStorage.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/storage/plugins/LocalStorage.hxx b/src/storage/plugins/LocalStorage.hxx
index e80fd8276..7295d38e7 100644
--- a/src/storage/plugins/LocalStorage.hxx
+++ b/src/storage/plugins/LocalStorage.hxx
@@ -23,9 +23,12 @@
#include "check.h"
#include "Compiler.h"
+struct StoragePlugin;
class Storage;
class Path;
+extern const StoragePlugin local_storage_plugin;
+
gcc_malloc gcc_nonnull_all
Storage *
CreateLocalStorage(Path base_fs);