mirror of https://git.suyu.dev/suyu/suyu
commit
340771ccd7
@ -1,18 +0,0 @@
|
|||||||
// Copyright 2018 yuzu emulator team
|
|
||||||
// Licensed under GPLv2 or any later version
|
|
||||||
// Refer to the license.txt file included.
|
|
||||||
|
|
||||||
#include "core/hle/service/friend/friend_u.h"
|
|
||||||
|
|
||||||
namespace Service::Friend {
|
|
||||||
|
|
||||||
Friend_U::Friend_U(std::shared_ptr<Module> module)
|
|
||||||
: Module::Interface(std::move(module), "friend:u") {
|
|
||||||
static const FunctionInfo functions[] = {
|
|
||||||
{0, &Friend_U::CreateFriendService, "CreateFriendService"},
|
|
||||||
{1, nullptr, "CreateNotificationService"},
|
|
||||||
};
|
|
||||||
RegisterHandlers(functions);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace Service::Friend
|
|
@ -1,16 +0,0 @@
|
|||||||
// 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/friend/friend.h"
|
|
||||||
|
|
||||||
namespace Service::Friend {
|
|
||||||
|
|
||||||
class Friend_U final : public Module::Interface {
|
|
||||||
public:
|
|
||||||
explicit Friend_U(std::shared_ptr<Module> module);
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace Service::Friend
|
|
Loading…
Reference in New Issue