pm_app.cpp 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "common/log.h"
  5. #include "core/hle/hle.h"
  6. #include "core/hle/service/pm_app.h"
  7. ////////////////////////////////////////////////////////////////////////////////////////////////////
  8. // Namespace PM_APP
  9. namespace PM_APP {
  10. const Interface::FunctionInfo FunctionTable[] = {
  11. {0x00010140, nullptr, "LaunchTitle"},
  12. {0x00020082, nullptr, "LaunchFIRMSetParams"},
  13. {0x00030080, nullptr, "TerminateProcesse"},
  14. {0x00040100, nullptr, "TerminateProcessTID"},
  15. {0x000500C0, nullptr, "TerminateProcessTID_unknown"},
  16. {0x00070042, nullptr, "GetFIRMLaunchParams"},
  17. {0x00080100, nullptr, "GetTitleExheaderFlags"},
  18. {0x00090042, nullptr, "SetFIRMLaunchParams"},
  19. };
  20. ////////////////////////////////////////////////////////////////////////////////////////////////////
  21. // Interface class
  22. Interface::Interface() {
  23. Register(FunctionTable, ARRAY_SIZE(FunctionTable));
  24. }
  25. } // namespace