mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
8 lines
No EOL
293 B
C++
8 lines
No EOL
293 B
C++
#pragma once
|
|
#include <switch.h>
|
|
|
|
class IServiceObject {
|
|
public:
|
|
virtual ~IServiceObject() { }
|
|
virtual 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) = 0;
|
|
}; |