mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 17:54:04 +00:00
5ee38b157d
(also debloats - no Guitar Hero 3/Wii Board/key down/key up)
24 lines
340 B
C
24 lines
340 B
C
/**
|
|
* @file
|
|
* @brief Motion plus extension
|
|
*/
|
|
|
|
#ifndef MOTION_PLUS_H_INCLUDED
|
|
#define MOTION_PLUS_H_INCLUDED
|
|
|
|
#include "wiiuse_internal.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void motion_plus_disconnected(struct motion_plus_t* mp);
|
|
|
|
void motion_plus_event(struct motion_plus_t* mp, ubyte* msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|