2017-08-19 08:46:04 +02:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Motion plus extension
|
|
|
|
*/
|
|
|
|
|
2017-12-11 23:55:31 -08:00
|
|
|
/* This source as presented is a modified version of original wiiuse for use
|
2017-08-19 08:46:04 +02:00
|
|
|
* with RetroArch, and must not be confused with the original software. */
|
|
|
|
|
|
|
|
#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
|