Panda3DS/include/services/hid.hpp
2022-09-18 02:31:58 +03:00

14 lines
No EOL
267 B
C++

#pragma once
#include "helpers.hpp"
#include "kernel_types.hpp"
#include "memory.hpp"
class HIDService {
Handle handle = KernelHandles::HID;
Memory& mem;
public:
HIDService(Memory& mem) : mem(mem) {}
void reset();
void handleSyncRequest(u32 messagePointer);
};