1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-10 14:11:43 +00:00
Atmosphere/stratosphere/loader/source/iserviceobject.hpp

7 lines
232 B
C++
Raw Normal View History

2018-04-18 10:30:34 +01:00
#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);
2018-04-18 10:30:34 +01:00
};