Subversion Repositories HelenOS

Rev

Rev 4346 | Rev 4348 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4346 Rev 4347
Line 69... Line 69...
69
struct outdev;
69
struct outdev;
70
 
70
 
71
/* Output character device operations interface. */
71
/* Output character device operations interface. */
72
typedef struct {
72
typedef struct {
73
    /** Write character to output. */
73
    /** Write character to output. */
74
    void (* write)(struct outdev *, char c, bool silent);
74
    void (* write)(struct outdev *, wchar_t c, bool silent);
75
} outdev_operations_t;
75
} outdev_operations_t;
76
 
76
 
77
/** Character input device. */
77
/** Character input device. */
78
typedef struct outdev {
78
typedef struct outdev {
79
    char *name;
79
    char *name;