1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 14:03:25 +01:00
Atmosphere/stratosphere/loader/source/iserviceobject.hpp
2018-04-18 03:52:19 -06:00

7 lines
232 B
C++

#pragma once
#include <switch.h>
class IServiceObject {
public:
virtual Result dispatch(IpcParsedCommand *r, u32 *cmd_buf, u32 cmd_id, u32 *in_rawdata, u32 in_rawdata_size, u32 *out_rawdata, u32 *out_raw_data_count);
};