Changeset d900699 in mainline for uspace/srv/hid/input/include/input.h
- Timestamp:
- 2011-06-17T16:48:53Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3a605be
- Parents:
- df8110d3 (diff), 98caf49 (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/srv/hid/input/include/input.h
rdf8110d3 rd900699 1 1 /* 2 2 * Copyright (c) 2006 Josef Cejka 3 * Copyright (c) 2011 Jiri Svoboda 3 4 * All rights reserved. 4 5 * … … 27 28 */ 28 29 29 /** @addtogroup kbdgen generic30 * @brief HelenOS generic uspace keyboard handler.31 * @ingroup kbd30 /** @addtogroup inputgen generic 31 * @brief HelenOS input server. 32 * @ingroup input 32 33 * @{ 33 34 */ … … 35 36 */ 36 37 37 #ifndef KBD_KBD_H_38 #define KBD_KBD_H_38 #ifndef INPUT_H_ 39 #define INPUT_H_ 39 40 40 41 #include <bool.h> 42 43 #define NAME "input" 44 #define NAMESPACE "hid_in" 41 45 42 46 extern bool irc_service; 43 47 extern int irc_phone; 44 48 45 extern void kbd_push_scancode(int); 46 extern void kbd_push_ev(int, unsigned int); 49 extern link_t mouse_devs; 50 51 void input_event_move(int, int); 52 void input_event_button(int bnum, int press); 47 53 48 54 #endif
Note:
See TracChangeset
for help on using the changeset viewer.