dlp_clnt.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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_clnt.h"
  5. namespace Service {
  6. namespace DLP {
  7. const Interface::FunctionInfo FunctionTable[] = {
  8. {0x000100C3, nullptr, "Initialize"},
  9. {0x00020000, nullptr, "Finalize"},
  10. {0x00030000, nullptr, "GetEventDesc"},
  11. {0x00040000, nullptr, "GetChannel"},
  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, "PrepareForSystemDownload"},
  19. {0x000C0000, nullptr, "StartSystemDownload"},
  20. {0x000D0100, nullptr, "StartTitleDownload"},
  21. {0x000E0000, nullptr, "GetMyStatus"},
  22. {0x000F0040, nullptr, "GetConnectingNodes"},
  23. {0x00100040, nullptr, "GetNodeInfo"},
  24. {0x00110000, nullptr, "GetWirelessRebootPassphrase"},
  25. {0x00120000, nullptr, "StopSession"},
  26. {0x00130100, nullptr, "GetCupVersion"},
  27. {0x00140100, nullptr, "GetDupAvailability"},
  28. };
  29. DLP_CLNT_Interface::DLP_CLNT_Interface() {
  30. Register(FunctionTable);
  31. }
  32. } // namespace DLP
  33. } // namespace Service