2009-03-04 08:01:04 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Visual Boy Advance GX
|
|
|
|
*
|
2009-08-14 09:01:20 +02:00
|
|
|
* Tantric August 2009
|
2009-03-04 08:01:04 +01:00
|
|
|
*
|
|
|
|
* wiiusbsupport.h
|
|
|
|
*
|
|
|
|
* Wii USB Keyboard and USB Mouse support
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _WIIUSBSUPPORT_H_
|
|
|
|
#define _WIIUSBSUPPORT_H_
|
|
|
|
|
2009-08-14 09:01:20 +02:00
|
|
|
#include <wiikeyboard/wsksymdef.h>
|
|
|
|
|
|
|
|
#define MOUSEL 65533
|
|
|
|
#define MOUSER 65534
|
|
|
|
#define MOUSEM 65535
|
2009-03-04 08:01:04 +01:00
|
|
|
|
|
|
|
void StartWiiKeyboardMouse();
|
|
|
|
bool AnyKeyDown();
|
|
|
|
|
2009-08-14 09:01:20 +02:00
|
|
|
extern u16 DownUsbKeys[65536];
|
|
|
|
extern u16 DownUsbShiftKeys;
|
2009-03-04 08:01:04 +01:00
|
|
|
|
|
|
|
#endif
|