mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
23 lines
283 B
C
23 lines
283 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();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|