friend_a.cpp 574 B

1234567891011121314151617181920
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/friend/friend_a.h"
  5. namespace Service {
  6. namespace Friend {
  7. Friend_A::Friend_A(std::shared_ptr<Module> module)
  8. : Module::Interface(std::move(module), "friend:a") {
  9. static const FunctionInfo functions[] = {
  10. {0, &Friend_A::CreateFriendService, "CreateFriendService"},
  11. {1, nullptr, "CreateNotificationService"},
  12. };
  13. RegisterHandlers(functions);
  14. }
  15. } // namespace Friend
  16. } // namespace Service