Subversion Repositories HelenOS

Rev

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

Rev 3747 Rev 3767
Line 30... Line 30...
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#ifndef LIBC_CONSOLE_H_
35
#ifndef LIBC_IPC_CONSOLE_H_
36
#define LIBC_CONSOLE_H_
36
#define LIBC_IPC_CONSOLE_H_
37
 
37
 
-
 
38
#include <ipc/ipc.h>
-
 
39
 
-
 
40
typedef enum {
38
#define CONSOLE_GETCHAR     1026
41
    CONSOLE_GETCHAR = IPC_FIRST_USER_METHOD,
39
#define CONSOLE_PUTCHAR     1027
42
    CONSOLE_PUTCHAR,
40
#define CONSOLE_CLEAR       1028
43
    CONSOLE_CLEAR,
41
#define CONSOLE_GOTO        1029
44
    CONSOLE_GOTO,
42
#define CONSOLE_GETSIZE     1030
45
    CONSOLE_GETSIZE,
43
#define CONSOLE_FLUSH       1031
46
    CONSOLE_FLUSH,
44
#define CONSOLE_SET_STYLE   1032
47
    CONSOLE_SET_STYLE,
-
 
48
    CONSOLE_SET_COLOR,
-
 
49
    CONSOLE_SET_RGB_COLOR,
45
#define CONSOLE_CURSOR_VISIBILITY   1033
50
    CONSOLE_CURSOR_VISIBILITY
-
 
51
} console_request_t;
46
 
52
 
47
#endif
53
#endif
48
 
54
 
49
/** @}
55
/** @}
50
 */
56
 */