interface.cpp 548 B

123456789101112131415161718
  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/interface.h"
  5. namespace Service::Friend {
  6. Friend::Friend(std::shared_ptr<Module> module, const char* name)
  7. : Interface(std::move(module), name) {
  8. static const FunctionInfo functions[] = {
  9. {0, &Friend::CreateFriendService, "CreateFriendService"},
  10. {1, nullptr, "CreateNotificationService"},
  11. };
  12. RegisterHandlers(functions);
  13. }
  14. } // namespace Service::Friend