mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
25 lines
312 B
C
25 lines
312 B
C
|
|
||
|
#ifndef _WUPC_STRUCTS_H_
|
||
|
#define _WUPC_STRUCTS_H_
|
||
|
|
||
|
struct WUPCStat {
|
||
|
u32 connected;
|
||
|
u32 transferstate;
|
||
|
u32 channel;
|
||
|
u32 rumble;
|
||
|
s16 xAxisLmid;
|
||
|
s16 xAxisRmid;
|
||
|
s16 yAxisLmid;
|
||
|
s16 yAxisRmid;
|
||
|
struct bte_pcb *sock;
|
||
|
struct bd_addr bdaddr;
|
||
|
};
|
||
|
|
||
|
struct WUPCButtons {
|
||
|
u32 up;
|
||
|
u32 down;
|
||
|
u32 state;
|
||
|
};
|
||
|
|
||
|
#endif
|