dlp_fkcl.cpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // Copyright 2016 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/dlp/dlp_fkcl.h"
  5. namespace Service {
  6. namespace DLP {
  7. const Interface::FunctionInfo FunctionTable[] = {
  8. {0x00010083, nullptr, "Initialize"},
  9. {0x00020000, nullptr, "Finalize"},
  10. {0x00030000, nullptr, "GetEventDesc"},
  11. {0x00040000, nullptr, "GetChannels"},
  12. {0x00050180, nullptr, "StartScan"},
  13. {0x00060000, nullptr, "StopScan"},
  14. {0x00070080, nullptr, "GetServerInfo"},
  15. {0x00080100, nullptr, "GetTitleInfo"},
  16. {0x00090040, nullptr, "GetTitleInfoInOrder"},
  17. {0x000A0080, nullptr, "DeleteScanInfo"},
  18. {0x000B0100, nullptr, "StartFakeSession"},
  19. {0x000C0000, nullptr, "GetMyStatus"},
  20. {0x000D0040, nullptr, "GetConnectingNodes"},
  21. {0x000E0040, nullptr, "GetNodeInfo"},
  22. {0x000F0000, nullptr, "GetWirelessRebootPassphrase"},
  23. {0x00100000, nullptr, "StopSession"},
  24. {0x00110203, nullptr, "Initialize2"},
  25. };
  26. DLP_FKCL_Interface::DLP_FKCL_Interface() {
  27. Register(FunctionTable);
  28. }
  29. } // namespace DLP
  30. } // namespace Service