Changeset f1fae414 in mainline for uspace/lib/c/include/ipc/input.h


Ignore:
Timestamp:
2011-06-22T01:34:53Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d7e82c1, cac458f
Parents:
72ec8cc (diff), bf172825 (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

    r72ec8cc rf1fae414  
    11/*
    2  * Copyright (c) 2009 Jiri Svoboda
     2 * Copyright (c) 2011 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup mouse
    30  * @brief
     29/** @addtogroup libcipc
    3130 * @{
    3231 */
     
    3433 */
    3534
    36 #ifndef LIBC_IPC_MOUSE_H_
    37 #define LIBC_IPC_MOUSE_H_
     35#ifndef LIBC_IPC_INPUT_H_
     36#define LIBC_IPC_INPUT_H_
    3837
    3938#include <ipc/common.h>
    4039
    4140typedef enum {
    42         MEVENT_BUTTON = IPC_FIRST_USER_METHOD,
    43         MEVENT_MOVE
    44 } mouse_notif_t;
     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;
    4550
    4651#endif
Note: See TracChangeset for help on using the changeset viewer.