Changeset 5f88293 in mainline for uspace/lib/c/include/ipc/input.h
- Timestamp:
- 2011-06-12T15:44:38Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60e5a856
- Parents:
- af897ff0
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/input.h
raf897ff0 r5f88293 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 */ … … 35 33 */ 36 34 37 #ifndef LIBC_IPC_ KBD_H_38 #define LIBC_IPC_ KBD_H_35 #ifndef LIBC_IPC_INPUT_H_ 36 #define LIBC_IPC_INPUT_H_ 39 37 40 38 #include <ipc/common.h> 41 #include <ipc/dev_iface.h>42 39 43 40 typedef enum { 44 KBD_YIELD = DEV_FIRST_CUSTOM_METHOD,45 KBD_RECLAIM46 } kbd_request_t;41 INPUT_YIELD = IPC_FIRST_USER_METHOD, 42 INPUT_RECLAIM 43 } input_request_t; 47 44 48 45 typedef enum { 49 KBD_EVENT = IPC_FIRST_USER_METHOD50 } kbd_notif_t;46 INPUT_EVENT = IPC_FIRST_USER_METHOD 47 } input_notif_t; 51 48 52 49 #endif
Note:
See TracChangeset
for help on using the changeset viewer.