pgl: Implement three more commands.

This commit is contained in:
Michael Scire
2020-04-16 02:45:36 -07:00
parent 6ce038acad
commit e53a592f72
7 changed files with 83 additions and 7 deletions

View File

@@ -23,7 +23,9 @@
namespace ams::pm::shell {
/* Shell API. */
Result LaunchProgram(os::ProcessId *out_process_id, const ncm::ProgramLocation &loc, u32 launch_flags);
Result LaunchProgram(os::ProcessId *out, const ncm::ProgramLocation &loc, u32 launch_flags);
Result TerminateProcess(os::ProcessId process_id);
Result GetApplicationProcessIdForShell(os::ProcessId *out);
Result BoostSystemMemoryResourceLimit(u64 size);
}