pm_app.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  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. {0x00010140, nullptr, "LaunchTitle"},
  10. {0x00020082, nullptr, "LaunchFIRMSetParams"},
  11. {0x00030080, nullptr, "TerminateProcesse"},
  12. {0x00040100, nullptr, "TerminateProcessTID"},
  13. {0x000500C0, nullptr, "TerminateProcessTID_unknown"},
  14. {0x00070042, nullptr, "GetFIRMLaunchParams"},
  15. {0x00080100, nullptr, "GetTitleExheaderFlags"},
  16. {0x00090042, nullptr, "SetFIRMLaunchParams"},
  17. {0x000A0140, nullptr, "SetResourceLimit"},
  18. {0x000B0140, nullptr, "GetResourceLimitMax"},
  19. {0x000C0080, nullptr, "UnregisterProcess"},
  20. {0x000D0240, nullptr, "LaunchTitleUpdate"},
  21. };
  22. ////////////////////////////////////////////////////////////////////////////////////////////////////
  23. // Interface class
  24. Interface::Interface() {
  25. Register(FunctionTable);
  26. }
  27. } // namespace