mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-08-01 13:48:46 +00:00
Stratosphere: Skeleton ldr:dmnt
This commit is contained in:
parent
21fa9ff17c
commit
c4db563261
5 changed files with 65 additions and 4 deletions
21
stratosphere/loader/source/ldr_debug_monitor.cpp
Normal file
21
stratosphere/loader/source/ldr_debug_monitor.cpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#include <switch.h>
|
||||
#include "ldr_debug_monitor.hpp"
|
||||
#include "ldr_launch_queue.hpp"
|
||||
|
||||
void DebugMonitorService::dispatch(IpcParsedCommand *r, u32 *cmd_buf, u32 cmd_id, u32 *in_rawdata, u32 in_rawdata_size, u32 *out_rawdata, u32 *out_raw_data_count) {
|
||||
/* TODO */
|
||||
}
|
||||
|
||||
Result DebugMonitorService::add_title_to_launch_queue(u64 tid, const char *args, size_t args_size) {
|
||||
return LaunchQueue::add(tid, args, args_size);
|
||||
}
|
||||
|
||||
Result DebugMonitorService::clear_launch_queue() {
|
||||
LaunchQueue::clear();
|
||||
return 0;
|
||||
}
|
||||
|
||||
Result DebugMonitorService::get_nso_info(u64 pid, void *out, size_t out_size, u32 *out_num_nsos) {
|
||||
/* TODO, once I've defined struct NsoInfo elsewhere (in ldr_RegisteredProcesses.hpp) */
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue