Subversion Repositories HelenOS

Rev

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

Rev 4153 Rev 4263
Line 35... Line 35...
35
#ifndef LIBC_CONSOLE_H_
35
#ifndef LIBC_CONSOLE_H_
36
#define LIBC_CONSOLE_H_
36
#define LIBC_CONSOLE_H_
37
 
37
 
38
#include <console/style.h>
38
#include <console/style.h>
39
#include <console/color.h>
39
#include <console/color.h>
-
 
40
#include <sys/types.h>
-
 
41
#include <bool.h>
-
 
42
 
-
 
43
extern void console_open(bool);
-
 
44
extern void console_close(void);
-
 
45
 
-
 
46
extern int console_phone_get(bool);
-
 
47
extern void console_wait(void);
40
 
48
 
41
extern void console_clear(void);
49
extern void console_clear(void);
42
extern void console_goto(int, int);
50
extern void console_goto(int, int);
-
 
51
extern void console_putchar(wchar_t);
-
 
52
extern ssize_t console_write(const char *buf, size_t nbyte);
-
 
53
extern void console_putstr(const char *s);
43
extern void console_flush(void);
54
extern void console_flush(void);
-
 
55
 
44
extern int console_get_size(int *, int *);
56
extern int console_get_size(int *, int *);
45
extern void console_set_style(int);
57
extern void console_set_style(int);
46
extern void console_set_color(int, int, int);
58
extern void console_set_color(int, int, int);
47
extern void console_set_rgb_color(int, int);
59
extern void console_set_rgb_color(int, int);
48
extern void console_cursor_visibility(int);
60
extern void console_cursor_visibility(int);
49
 
61
 
-
 
62
extern void console_kcon_enable(void);
-
 
63
 
50
#endif
64
#endif
51
 
65
 
52
/** @}
66
/** @}
53
 */
67
 */