From 73f575a89e78ea9925854ed45c2dde887da0d37d Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Wed, 31 Aug 2011 10:45:30 -0500 Subject: [PATCH] add some prototypes to headers as needed by motion_plus --- src/wiiuse_internal.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wiiuse_internal.h b/src/wiiuse_internal.h index 8b43ca4..b742fae 100644 --- a/src/wiiuse_internal.h +++ b/src/wiiuse_internal.h @@ -260,8 +260,10 @@ void wiiuse_millisleep(int durationMilliseconds); int wiiuse_set_report_type(struct wiimote_t* wm); void wiiuse_send_next_pending_read_request(struct wiimote_t* wm); +void wiiuse_send_next_pending_write_request(struct wiimote_t* wm); int wiiuse_send(struct wiimote_t* wm, byte report_type, byte* msg, int len); int wiiuse_read_data_cb(struct wiimote_t* wm, wiiuse_read_cb read_cb, byte* buffer, unsigned int offset, uint16_t len); +int wiiuse_write_data_cb(struct wiimote_t *wm, uint addr, unsigned char *data, unsigned char len, wiiuse_write_cb write_cb); #ifdef WIIUSE_DOXYGEN_PARSING