1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-20 05:53:24 +01:00
Atmosphere/stratosphere/loader/source/iserviceobject.hpp

8 lines
274 B
C++
Raw Normal View History

2018-04-18 10:30:34 +01:00
#pragma once
#include <switch.h>
class IServiceObject {
public:
virtual ~IServiceObject() { }
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) = 0;
2018-04-18 10:30:34 +01:00
};