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
|
|
|
|
2018-04-20 03:41:44 +02: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"},
|
2018-04-10 19:00:36 +02:00
|
|
|
{1, nullptr, "CreateNotificationService"},
|
2018-02-19 23:34:02 +01:00
|
|
|
};
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
} // namespace Service::Friend
|