mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
a97cfd3431
*Some small fixes and MP3 Crash fix (STILL BUGGY WHILE PLAYING, DON'T USE IT)
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
|