mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-16 08:04:23 -04:00
Stratosphere: Skeleton ldr:dmnt
This commit is contained in:
parent
21fa9ff17c
commit
c4db563261
5 changed files with 65 additions and 4 deletions
15
stratosphere/loader/source/ldr_debug_monitor.hpp
Normal file
15
stratosphere/loader/source/ldr_debug_monitor.hpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
#include <switch.h>
|
||||
|
||||
#include "iserviceobject.hpp"
|
||||
|
||||
class DebugMonitorService : IServiceObject {
|
||||
public:
|
||||
void dispatch(IpcParsedCommand *r, u32 *cmd_buf, u32 cmd_id, u32 *in_rawdata, u32 in_rawdata_size, u32 *out_rawdata, u32 *out_raw_data_count);
|
||||
|
||||
private:
|
||||
/* Actual commands. */
|
||||
Result add_title_to_launch_queue(u64 tid, const char *args, size_t args_size);
|
||||
Result clear_launch_queue();
|
||||
Result get_nso_info(u64 pid, void *out, size_t out_size, u32 *out_num_nsos);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue