mirror of
https://github.com/mikage-emu/mikage-dev.git
synced 2025-01-09 15:01:00 +01:00
25 lines
412 B
C++
25 lines
412 B
C++
|
#pragma once
|
||
|
|
||
|
#include "ipc.hpp"
|
||
|
|
||
|
namespace Platform {
|
||
|
|
||
|
/**
|
||
|
* CDC = Communication Device Class.
|
||
|
*/
|
||
|
namespace CDC {
|
||
|
|
||
|
namespace HID {
|
||
|
|
||
|
// NOTE: Response headers for these aren't verified!
|
||
|
using GetTouchData = IPC::IPCCommand<0x1>
|
||
|
::response::add_uint32::add_uint32;
|
||
|
using Initialize = IPC::IPCCommand<0x2>
|
||
|
::response;
|
||
|
|
||
|
}
|
||
|
|
||
|
} // namespace CDC
|
||
|
|
||
|
} // namespace Platform
|