2009-05-03 18:53:31 +00:00
|
|
|
#ifndef _WPAD_H_
|
|
|
|
#define _WPAD_H_
|
|
|
|
|
2009-06-05 15:43:32 +00:00
|
|
|
#include <wiiuse/wpad.h>
|
2009-05-03 18:53:31 +00:00
|
|
|
|
2009-07-30 05:41:12 +00:00
|
|
|
#ifdef __cplusplus
|
2010-09-18 23:16:05 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
2009-05-03 18:53:31 +00:00
|
|
|
|
2011-07-25 22:28:22 +00:00
|
|
|
/* Prototypes */
|
|
|
|
s32 Wpad_Init(void);
|
|
|
|
void Wpad_Disconnect(void);
|
|
|
|
u32 ButtonsPressed(void);
|
|
|
|
u32 ButtonsHold(void);
|
|
|
|
bool IsWpadConnected();
|
2010-09-24 00:48:03 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|