Newer
Older
Atmosphere / stratosphere / loader / source / ldr_shell.hpp
#pragma once
#include <switch.h>

#include "iserviceobject.hpp"

enum ShellServiceCmd {
    Shell_Cmd_AddTitleToLaunchQueue = 0,
    Shell_Cmd_ClearLaunchQueue = 1
};

class ShellService : IServiceObject {
    public:
        Result dispatch(IpcParsedCommand *r, IpcCommand *out_c, 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();
};