Changeset 8ff0bd2 in mainline for uspace/drv/bus/usb/usbmouse/mouse.c
- Timestamp:
- 2011-09-04T11:30:58Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03bc76a
- Parents:
- d2c67e7 (diff), deac215e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbmouse/mouse.c
rd2c67e7 r8ff0bd2 38 38 #include <errno.h> 39 39 #include <str_error.h> 40 #include <ipc/mouse .h>40 #include <ipc/mouseev.h> 41 41 #include <async.h> 42 42 #include "mouse.h" … … 86 86 87 87 async_exch_t *exch = async_exchange_begin(mouse->console_sess); 88 async_req_2_0(exch, M EVENT_MOVE, -shift_x / 10, -shift_y / 10);88 async_req_2_0(exch, MOUSEEV_MOVE_EVENT, -shift_x / 10, -shift_y / 10); 89 89 async_exchange_end(exch); 90 90 } … … 93 93 94 94 async_exch_t *exch = async_exchange_begin(mouse->console_sess); 95 async_req_2_0(exch, M EVENT_BUTTON, 1, 1);96 async_req_2_0(exch, M EVENT_BUTTON, 1, 0);95 async_req_2_0(exch, MOUSEEV_BUTTON_EVENT, 1, 1); 96 async_req_2_0(exch, MOUSEEV_BUTTON_EVENT, 1, 0); 97 97 async_exchange_end(exch); 98 98 }
Note:
See TracChangeset
for help on using the changeset viewer.