You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aiie/vmkeyboard.h

16 lines
279 B
C++

#ifndef __VMKEYBOARD_H
#define __VMKEYBOARD_H
#include <stdint.h>
class VMKeyboard {
public:
virtual ~VMKeyboard() {}
virtual void keyDepressed(uint8_t k) = 0;
virtual void keyReleased(uint8_t k) = 0;
virtual void maintainKeyboard(int64_t cycleCount) = 0;
};
#endif