mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-15 10:39:13 +01:00
035155754e
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4308 8ced0084-cf51-0410-be5f-012b33b47a6e
23 lines
360 B
C
23 lines
360 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, byte* msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |