yuzu/src/core/hle/service/friend/interface.cpp

20 lines
607 B
C++
Raw Normal View History

2018-02-19 23:34:02 +01:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
2018-07-24 16:21:04 +02:00
#include "core/hle/service/friend/interface.h"
2018-02-19 23:34:02 +01:00
namespace Service::Friend {
2018-02-19 23:34:02 +01:00
2018-07-24 16:21:04 +02:00
Friend::Friend(std::shared_ptr<Module> module, const char* name)
: Interface(std::move(module), name) {
2018-02-19 23:34:02 +01:00
static const FunctionInfo functions[] = {
2018-07-24 16:21:04 +02:00
{0, &Friend::CreateFriendService, "CreateFriendService"},
{1, nullptr, "CreateNotificationService"},
{2, nullptr, "CreateDaemonSuspendSessionService"},
2018-02-19 23:34:02 +01:00
};
RegisterHandlers(functions);
}
} // namespace Service::Friend