mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
976ea2041c
*Added ButtonsHold and ButtonsPressed functions *Some cleanups
23 lines
289 B
C
23 lines
289 B
C
#ifndef _WPAD_H_
|
|
#define _WPAD_H_
|
|
|
|
#include <wiiuse/wpad.h>
|
|
#include <ogc/pad.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/* Prototypes */
|
|
s32 Wpad_Init(void);
|
|
void Wpad_Disconnect(void);
|
|
u32 ButtonsPressed(void);
|
|
u32 ButtonsHold(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|