mirror of
https://github.com/mogzol/sharpii.git
synced 2024-11-13 06:05:05 +01:00
13 lines
193 B
C
13 lines
193 B
C
|
#ifndef _WPAD_H_
|
||
|
#define _WPAD_H_
|
||
|
|
||
|
#include <wiiuse/wpad.h>
|
||
|
|
||
|
/* Prototypes */
|
||
|
s32 Wpad_Init(void);
|
||
|
void Wpad_Disconnect(void);
|
||
|
u32 Wpad_GetButtons(void);
|
||
|
u32 Wpad_WaitButtons(void);
|
||
|
|
||
|
#endif
|