diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-07-14 00:52:17 -0400 |
|---|---|---|
| committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-07-14 02:09:14 -0400 |
| commit | c6d7da88c7ab125279ea4ccad0e3e839632b2f7a (patch) | |
| tree | 8591def7815ce7cc9156d87e0d62567584db1a23 /src/core/hle/service/friend/friend_interface.cpp | |
| parent | 79824d7d1b69382571e5c05fe3e66485212d06f5 (diff) | |
service: Append service name prefix to common filenames
Diffstat (limited to 'src/core/hle/service/friend/friend_interface.cpp')
| -rw-r--r-- | src/core/hle/service/friend/friend_interface.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/hle/service/friend/friend_interface.cpp b/src/core/hle/service/friend/friend_interface.cpp new file mode 100644 index 000000000..9b18b2a32 --- /dev/null +++ b/src/core/hle/service/friend/friend_interface.cpp @@ -0,0 +1,21 @@ +// 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_interface.h" + +namespace Service::Friend { + +Friend::Friend(std::shared_ptr<Module> module_, Core::System& system_, const char* name) + : Interface(std::move(module_), system_, name) { + static const FunctionInfo functions[] = { + {0, &Friend::CreateFriendService, "CreateFriendService"}, + {1, &Friend::CreateNotificationService, "CreateNotificationService"}, + {2, nullptr, "CreateDaemonSuspendSessionService"}, + }; + RegisterHandlers(functions); +} + +Friend::~Friend() = default; + +} // namespace Service::Friend |
