diff options
Diffstat (limited to 'src/storage/StoragePlugin.hxx')
-rw-r--r-- | src/storage/StoragePlugin.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/storage/StoragePlugin.hxx b/src/storage/StoragePlugin.hxx index d91caf24b..15f431105 100644 --- a/src/storage/StoragePlugin.hxx +++ b/src/storage/StoragePlugin.hxx @@ -24,11 +24,13 @@ class Error; class Storage; +class EventLoop; struct StoragePlugin { const char *name; - Storage *(*create_uri)(const char *uri, Error &error); + Storage *(*create_uri)(EventLoop &event_loop, const char *uri, + Error &error); }; #endif |