From 722d5509178fa5bdaa488fbbd9196f21377f8775 Mon Sep 17 00:00:00 2001 From: Ben Bridle Date: Mon, 18 Nov 2024 14:57:19 +1300 Subject: Initial commit --- arm9/source/devices/input.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 arm9/source/devices/input.h (limited to 'arm9/source/devices/input.h') diff --git a/arm9/source/devices/input.h b/arm9/source/devices/input.h new file mode 100644 index 0000000..e62bdd3 --- /dev/null +++ b/arm9/source/devices/input.h @@ -0,0 +1,16 @@ +#ifndef INPUT_H_ + #define INPUT_H_ + + typedef struct { + bool pointer; // pointer active + bool keyboard; // keyboard active + u16 x,y; // pointer position + u8 navigation; // navigation state + u8 gamepad; // gamepad state + bool wake; // wake flag + } InputDevice; + + void inp_read_gamepad(InputDevice *inp); + void inp_read_navigation(InputDevice *inp); + void inp_read_touch(InputDevice *inp); +#endif -- cgit v1.2.3-70-g09d2