Changeset d900699 in mainline for uspace/lib/c/include/ipc/input.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/input.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 * @{
    33  */ 
     31 */
    3432/** @file
    3533 */
    3634
    37 #ifndef KBD_CTL_H_
    38 #define KBD_CTL_H_
     35#ifndef LIBC_IPC_INPUT_H_
     36#define LIBC_IPC_INPUT_H_
    3937
    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
     40typedef enum {
     41        INPUT_YIELD = IPC_FIRST_USER_METHOD,
     42        INPUT_RECLAIM
     43} input_request_t;
     44
     45typedef enum {
     46        INPUT_EVENT_KEY = IPC_FIRST_USER_METHOD,
     47        INPUT_EVENT_MOVE,
     48        INPUT_EVENT_BUTTON
     49} input_notif_t;
    4350
    4451#endif
     
    4653/**
    4754 * @}
    48  */
    49 
     55 */
Note: See TracChangeset for help on using the changeset viewer.