Stratosphere: Skeleton ldr:dmnt

This commit is contained in:
Michael Scire 2018-04-18 03:30:34 -06:00
parent 21fa9ff17c
commit c4db563261
5 changed files with 65 additions and 4 deletions

View file

@ -0,0 +1,7 @@
#pragma once
#include <switch.h>
class IServiceObject {
public:
virtual 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);
};