pm_app.cpp 1.1 KB

12345678910111213141516171819202122232425262728293031
  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/hle.h"
  5. #include "core/hle/service/pm_app.h"
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////
  7. // Namespace PM_APP
  8. namespace PM_APP {
  9. const Interface::FunctionInfo FunctionTable[] = {
  10. {0x00010140, nullptr, "LaunchTitle"},
  11. {0x00020082, nullptr, "LaunchFIRMSetParams"},
  12. {0x00030080, nullptr, "TerminateProcesse"},
  13. {0x00040100, nullptr, "TerminateProcessTID"},
  14. {0x000500C0, nullptr, "TerminateProcessTID_unknown"},
  15. {0x00070042, nullptr, "GetFIRMLaunchParams"},
  16. {0x00080100, nullptr, "GetTitleExheaderFlags"},
  17. {0x00090042, nullptr, "SetFIRMLaunchParams"},
  18. };
  19. ////////////////////////////////////////////////////////////////////////////////////////////////////
  20. // Interface class
  21. Interface::Interface() {
  22. Register(FunctionTable);
  23. }
  24. } // namespace