summaryrefslogtreecommitdiffhomepage
path: root/src/rinput.h
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2022-03-21 04:50:32 +0000
committerMichael Smith <mikesmiffy128@gmail.com>2022-03-21 04:50:32 +0000
commit042acdc08f29920d4d46dde7c8a663b20a743f90 (patch)
treefafbc372d8500e20513d5d532b67c9465ff61f3b /src/rinput.h
parenta5159139ba679b36a01cf727672dda9f6f7e8c8c (diff)
Add m_rawinput reimplementation to replace RInput
It's archive so you can set m_rawinput 1, load SST via VDF and then never think about it again.
Diffstat (limited to 'src/rinput.h')
-rw-r--r--src/rinput.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/rinput.h b/src/rinput.h
new file mode 100644
index 0000000..4048a2c
--- /dev/null
+++ b/src/rinput.h
@@ -0,0 +1,13 @@
+#ifndef INC_RINPUT_H
+#define INC_RINPUT_H
+#ifdef _WIN32
+
+#include <stdbool.h>
+
+bool rinput_init(void);
+void rinput_end(void);
+
+#endif
+#endif
+
+// vi: sw=4 ts=4 noet tw=80 cc=80