pm_app.cpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/pm_app.h"
  5. ////////////////////////////////////////////////////////////////////////////////////////////////////
  6. // Namespace PM_APP
  7. namespace PM_APP {
  8. const Interface::FunctionInfo FunctionTable[] = {
  9. // clang-format off
  10. {0x00010140, nullptr, "LaunchTitle"},
  11. {0x00020082, nullptr, "LaunchFIRM"},
  12. {0x00030080, nullptr, "TerminateApplication"},
  13. {0x00040100, nullptr, "TerminateTitle"},
  14. {0x000500C0, nullptr, "TerminateProcess"},
  15. {0x00060082, nullptr, "PrepareForReboot"},
  16. {0x00070042, nullptr, "GetFIRMLaunchParams"},
  17. {0x00080100, nullptr, "GetTitleExheaderFlags"},
  18. {0x00090042, nullptr, "SetFIRMLaunchParams"},
  19. {0x000A0140, nullptr, "SetAppResourceLimit"},
  20. {0x000B0140, nullptr, "GetAppResourceLimit"},
  21. {0x000C0080, nullptr, "UnregisterProcess"},
  22. {0x000D0240, nullptr, "LaunchTitleUpdate"},
  23. // clang-format on
  24. };
  25. ////////////////////////////////////////////////////////////////////////////////////////////////////
  26. // Interface class
  27. Interface::Interface() {
  28. Register(FunctionTable);
  29. }
  30. } // namespace