mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 01:09:16 +01:00
9e79c9d99b
* code cleanup
24 lines
360 B
C
24 lines
360 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 ButtonsPressed( void );
|
|
u32 ButtonsHold( void );
|
|
bool IsWpadConnected();
|
|
void WPad_SetIdleTime( u32 seconds );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|