Changeset f1fae414 in mainline for uspace/lib/c/include/ipc/kbdev.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/kbdev.h

    r72ec8cc rf1fae414  
    11/*
    2  * Copyright (c) 2010 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 ADB_MOUSE_H_
    37 #define ADB_MOUSE_H_
     35#ifndef LIBC_IPC_KBDEV_H_
     36#define LIBC_IPC_KBDEV_H_
    3837
    39 #include <sys/types.h>
     38#include <ipc/common.h>
     39#include <ipc/dev_iface.h>
    4040
    41 #define NAME       "adb_ms"
    42 #define NAMESPACE  "hid_in"
     41typedef enum {
     42        KBDEV_YIELD = DEV_FIRST_CUSTOM_METHOD,
     43        KBDEV_RECLAIM,
     44        KBDEV_SET_IND
     45} kbdev_request_t;
    4346
    44 extern void mouse_handle_data(uint16_t);
     47typedef enum {
     48        KBDEV_EVENT = IPC_FIRST_USER_METHOD
     49} kbdev_notif_t;
    4550
    4651#endif
Note: See TracChangeset for help on using the changeset viewer.