Changeset d900699 in mainline for uspace/lib/c/include/ipc/kbdev.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/kbdev.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 */ … … 35 33 */ 36 34 37 #ifndef LIBC_IPC_KBD _H_38 #define LIBC_IPC_KBD _H_35 #ifndef LIBC_IPC_KBDEV_H_ 36 #define LIBC_IPC_KBDEV_H_ 39 37 40 38 #include <ipc/common.h> … … 42 40 43 41 typedef enum { 44 KBD_YIELD = DEV_FIRST_CUSTOM_METHOD, 45 KBD_RECLAIM 46 } kbd_request_t; 42 KBDEV_YIELD = DEV_FIRST_CUSTOM_METHOD, 43 KBDEV_RECLAIM, 44 KBDEV_SET_IND 45 } kbdev_request_t; 47 46 48 47 typedef enum { 49 KBD _EVENT = IPC_FIRST_USER_METHOD50 } kbd _notif_t;48 KBDEV_EVENT = IPC_FIRST_USER_METHOD 49 } kbdev_notif_t; 51 50 52 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.