Browse Source
Updated friend:a with more service names.
pull/15/merge
Hexagon12
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/core/hle/service/friend/friend_a.cpp
|
|
|
@ -10,7 +10,8 @@ namespace Friend { |
|
|
|
Friend_A::Friend_A(std::shared_ptr<Module> module) |
|
|
|
: Module::Interface(std::move(module), "friend:a") { |
|
|
|
static const FunctionInfo functions[] = { |
|
|
|
{0, &Friend_A::Unknown, "Unknown"}, |
|
|
|
{0, &Friend_A::CreateFriendService, "CreateFriendService"}, |
|
|
|
{1, nullptr, "CreateNotificationService"}, |
|
|
|
}; |
|
|
|
RegisterHandlers(functions); |
|
|
|
} |
|
|
|
|