From 9beff5dd0beaf5eda614f51506956156a6ac85b2 Mon Sep 17 00:00:00 2001 From: James Benton Date: Wed, 13 Jun 2018 12:11:00 +0100 Subject: [PATCH] Add padscore/kpad.h for a stubbed KPADStatus typedef. --- include/padscore/kpad.h | 20 ++++++++++++++++++++ include/padscore/padscore.dox | 5 +++++ 2 files changed, 25 insertions(+) create mode 100644 include/padscore/kpad.h create mode 100644 include/padscore/padscore.dox diff --git a/include/padscore/kpad.h b/include/padscore/kpad.h new file mode 100644 index 0000000..82b9932 --- /dev/null +++ b/include/padscore/kpad.h @@ -0,0 +1,20 @@ +#pragma once +#include + +/** + * \defgroup padscore_kpad KPAD + * \ingroup padscore + * @{ + */ + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct KPADStatus KPADStatus; + +#ifdef __cplusplus +} +#endif + +/** @} */ diff --git a/include/padscore/padscore.dox b/include/padscore/padscore.dox new file mode 100644 index 0000000..8edf404 --- /dev/null +++ b/include/padscore/padscore.dox @@ -0,0 +1,5 @@ +/** + * \defgroup padscore padscore + * + * Input library for Wii controllers. + */