2018-03-23 06:32:50 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::SSL {
|
2018-03-23 06:32:50 +00:00
|
|
|
|
|
|
|
class SSL final : public ServiceFramework<SSL> {
|
|
|
|
public:
|
|
|
|
explicit SSL();
|
|
|
|
~SSL() = default;
|
2018-04-10 18:40:53 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void CreateContext(Kernel::HLERequestContext& ctx);
|
2018-04-22 05:04:24 +00:00
|
|
|
void SetInterfaceVersion(Kernel::HLERequestContext& ctx);
|
2018-03-23 06:32:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Registers all SSL services with the specified service manager.
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::SSL
|