Explorar o código

bcat: Expose CreateBackendFromSettings helper function

Zach Hilman %!s(int64=7) %!d(string=hai) anos
pai
achega
ea17b294ea

+ 2 - 0
src/core/hle/service/bcat/backend/backend.h

@@ -50,4 +50,6 @@ public:
     void SetPassphrase(u64 title_id, const Passphrase& passphrase) override;
 };
 
+std::unique_ptr<Backend> CreateBackendFromSettings(DirectoryGetter getter);
+
 } // namespace Service::BCAT

+ 0 - 2
src/core/hle/service/bcat/module.cpp

@@ -589,7 +589,6 @@ void Module::Interface::CreateDeliveryCacheStorageServiceWithApplicationId(
         Service::FileSystem::GetBCATDirectory(title_id));
 }
 
-namespace {
 std::unique_ptr<Backend> CreateBackendFromSettings(DirectoryGetter getter) {
     const auto backend = Settings::values.bcat_backend;
 
@@ -600,7 +599,6 @@ std::unique_ptr<Backend> CreateBackendFromSettings(DirectoryGetter getter) {
 
     return std::make_unique<NullBackend>(std::move(getter));
 }
-} // Anonymous namespace
 
 Module::Interface::Interface(std::shared_ptr<Module> module, const char* name)
     : ServiceFramework(name), module(std::move(module)),