Changeset d900699 in mainline for uspace/lib/c/include/ipc/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/lib/c/include/ipc/input.h
rdf8110d3 rd900699 1 1 /* 2 * Copyright (c) 20 09Jiri Svoboda2 * Copyright (c) 2011 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup kbdgen generic 30 * @brief HelenOS generic uspace keyboard handler. 31 * @ingroup kbd 29 /** @addtogroup libcipc 32 30 * @{ 33 */ 31 */ 34 32 /** @file 35 33 */ 36 34 37 #ifndef KBD_CTL_H_38 #define KBD_CTL_H_35 #ifndef LIBC_IPC_INPUT_H_ 36 #define LIBC_IPC_INPUT_H_ 39 37 40 extern void kbd_ctl_parse_scancode(int); 41 extern int kbd_ctl_init(void); 42 extern void kbd_ctl_set_ind(unsigned); 38 #include <ipc/common.h> 39 40 typedef enum { 41 INPUT_YIELD = IPC_FIRST_USER_METHOD, 42 INPUT_RECLAIM 43 } input_request_t; 44 45 typedef enum { 46 INPUT_EVENT_KEY = IPC_FIRST_USER_METHOD, 47 INPUT_EVENT_MOVE, 48 INPUT_EVENT_BUTTON 49 } input_notif_t; 43 50 44 51 #endif … … 46 53 /** 47 54 * @} 48 */ 49 55 */
Note:
See TracChangeset
for help on using the changeset viewer.