Renaming WiimoteState_t to wiimote_callback_data_t

This commit is contained in:
Ryan Pavlik
2011-06-20 10:16:43 -05:00
parent 3ae8ff0139
commit b0d506d433
2 changed files with 4 additions and 4 deletions

View File

@@ -194,7 +194,7 @@ int wiiuse_poll(struct wiimote_t** wm, int wiimotes) {
int wiiuse_update(struct wiimote_t** wiimotes, int nwiimotes, wiiuse_update_cb callback) { int wiiuse_update(struct wiimote_t** wiimotes, int nwiimotes, wiiuse_update_cb callback) {
int evnt = 0; int evnt = 0;
if (wiiuse_poll(wiimotes, nwiimotes)) { if (wiiuse_poll(wiimotes, nwiimotes)) {
static struct WiimoteState_t s; static struct wiimote_callback_data_t s;
int i = 0; int i = 0;
for (; i < nwiimotes; ++i) { for (; i < nwiimotes; ++i) {
switch (wiimotes[i]->event) { switch (wiimotes[i]->event) {

View File

@@ -689,7 +689,7 @@ typedef struct wiimote_t {
} wiimote; } wiimote;
/** @brief Data passed to a callback during wiiuse_update() */ /** @brief Data passed to a callback during wiiuse_update() */
typedef struct WiimoteState_t { typedef struct wiimote_callback_data_t {
WCONST int uid; WCONST int uid;
WCONST byte leds; WCONST byte leds;
WCONST float battery_level; WCONST float battery_level;
@@ -703,10 +703,10 @@ typedef struct WiimoteState_t {
WCONST WIIUSE_EVENT_TYPE event; WCONST WIIUSE_EVENT_TYPE event;
WCONST int state; WCONST int state;
WCONST struct expansion_t expansion; WCONST struct expansion_t expansion;
} WiimoteState; } wiimote_callback_data_t;
/** @brief Callback type */ /** @brief Callback type */
typedef void (*wiiuse_update_cb)(struct WiimoteState_t* wm); typedef void (*wiiuse_update_cb)(struct wiimote_callback_data_t* wm);
/** /**
* @brief Loglevels supported by wiiuse. * @brief Loglevels supported by wiiuse.