mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-15 16:05:10 +01:00
0cd2573062
Added used libraries to /branches/libs/ You need to "make" and "make install" both libsicksaxis and libupc to compile USBLoaderGX r1235+
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
|