Changeset d900699 in mainline for uspace/lib/c/include/ipc/kbdev.h


Ignore:
Timestamp:
2011-06-17T16:48:53Z (14 years ago)
Author:
Petr Koupy <petr.koupy@…>
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.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/ipc/kbdev.h

    rdf8110d3 rd900699  
    11/*
    2  * Copyright (c) 2009 Jiri Svoboda
     2 * Copyright (c) 2011 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup kbdgen generic
    30  * @brief HelenOS generic uspace keyboard handler.
    31  * @ingroup kbd
     29/** @addtogroup libcipc
    3230 * @{
    3331 */
     
    3533 */
    3634
    37 #ifndef LIBC_IPC_KBD_H_
    38 #define LIBC_IPC_KBD_H_
     35#ifndef LIBC_IPC_KBDEV_H_
     36#define LIBC_IPC_KBDEV_H_
    3937
    4038#include <ipc/common.h>
     
    4240
    4341typedef 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;
    4746
    4847typedef enum {
    49         KBD_EVENT = IPC_FIRST_USER_METHOD
    50 } kbd_notif_t;
     48        KBDEV_EVENT = IPC_FIRST_USER_METHOD
     49} kbdev_notif_t;
    5150
    5251#endif
Note: See TracChangeset for help on using the changeset viewer.