2018-02-19 22:34:02 +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"
|
|
|
|
|
|
|
|
namespace Service {
|
|
|
|
namespace Friend {
|
|
|
|
|
|
|
|
class Module final {
|
|
|
|
public:
|
|
|
|
class Interface : public ServiceFramework<Interface> {
|
|
|
|
public:
|
|
|
|
Interface(std::shared_ptr<Module> module, const char* name);
|
|
|
|
|
2018-04-11 11:48:56 +00:00
|
|
|
void CreateFriendService(Kernel::HLERequestContext& ctx);
|
2018-02-19 22:34:02 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
std::shared_ptr<Module> module;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Registers all Friend services with the specified service manager.
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
|
|
|
|
} // namespace Friend
|
|
|
|
} // namespace Service
|