mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-19 17:59:16 +01:00
22 lines
271 B
C
22 lines
271 B
C
|
#ifndef _WPAD_H_
|
||
|
#define _WPAD_H_
|
||
|
|
||
|
#include <wiiuse/wpad.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/* Prototypes */
|
||
|
s32 Wpad_Init(void);
|
||
|
void Wpad_Disconnect(void);
|
||
|
u32 Wpad_GetButtons(void);
|
||
|
u32 Wpad_WaitButtons(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|