2018-03-23 02:32:50 -04:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-11-26 15:19:08 -05:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-09-02 11:36:43 -04:00
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
2018-03-23 02:32:50 -04:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::SSL {
|
2018-03-23 02:32:50 -04:00
|
|
|
|
|
|
|
/// Registers all SSL services with the specified service manager.
|
2020-11-26 15:19:08 -05:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
|
2018-03-23 02:32:50 -04:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::SSL
|