2018-04-18 11:30:34 +02:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
|
2018-04-22 04:31:06 +02:00
|
|
|
#include <stratosphere/iserviceobject.hpp>
|
2018-04-21 03:34:29 +02:00
|
|
|
#include "ldr_registration.hpp"
|
2018-04-18 11:30:34 +02:00
|
|
|
|
2018-04-18 11:52:19 +02:00
|
|
|
enum DebugMonitorServiceCmd {
|
2018-04-18 20:10:45 +02:00
|
|
|
Dmnt_Cmd_AddTitleToLaunchQueue = 0,
|
|
|
|
Dmnt_Cmd_ClearLaunchQueue = 1,
|
|
|
|
Dmnt_Cmd_GetNsoInfo = 2
|
2018-04-18 11:52:19 +02:00
|
|
|
};
|
|
|
|
|
2018-06-03 07:46:27 +02:00
|
|
|
class DebugMonitorService final : IServiceObject {
|
2018-04-18 11:30:34 +02:00
|
|
|
public:
|
2018-06-03 07:46:27 +02:00
|
|
|
Result dispatch(IpcParsedCommand &r, IpcCommand &out_c, u64 cmd_id, u8 *pointer_buffer, size_t pointer_buffer_size) override;
|
|
|
|
Result handle_deferred() override {
|
2018-04-22 11:02:08 +02:00
|
|
|
/* This service will never defer. */
|
|
|
|
return 0;
|
|
|
|
}
|
2018-04-18 11:30:34 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
/* Actual commands. */
|
2018-04-21 03:34:29 +02:00
|
|
|
std::tuple<Result> add_title_to_launch_queue(u64 tid, InPointer<char> args);
|
|
|
|
std::tuple<Result> clear_launch_queue(u64 dat);
|
|
|
|
std::tuple<Result, u32> get_nso_info(u64 pid, OutPointerWithClientSize<Registration::NsoInfo> out);
|
2018-06-03 07:46:27 +02:00
|
|
|
};
|