~jakub/helenos/ia64-revival

« back to all changes in this revision

Viewing changes to uspace/lib/c/include/ipc/char.h

  • Committer: Jakub Jermar
  • Date: 2011-04-13 14:45:41 UTC
  • mfrom: (527.1.397 main-clone)
  • Revision ID: jakub@jermar.eu-20110413144541-x0j3r1zxqhsljx1o
MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 */
32
32
/** @file
33
33
 * @brief Character device interface.
34
 
 */ 
 
34
 */
35
35
 
36
36
#ifndef LIBC_IPC_CHAR_H_
37
37
#define LIBC_IPC_CHAR_H_
38
38
 
39
 
#include <ipc/ipc.h>
 
39
#include <ipc/common.h>
40
40
 
41
41
typedef enum {
42
42
        CHAR_WRITE_BYTE = IPC_FIRST_USER_METHOD
43
43
} char_request_t;
44
44
 
45
 
 
46
45
typedef enum {
47
46
        CHAR_NOTIF_BYTE = IPC_FIRST_USER_METHOD
48
47
} char_notif_t;