Subversion Repositories HelenOS

Rev

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

Rev 4263 Rev 4327
Line 25... Line 25...
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup libc
29
/** @addtogroup libc
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#ifndef LIBC_CONSOLE_H_
35
#ifndef LIBC_CONSOLE_H_
Line 38... Line 38...
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>
40
#include <sys/types.h>
41
#include <bool.h>
41
#include <bool.h>
42
 
42
 
43
extern void console_open(bool);
43
extern int console_open(bool);
44
extern void console_close(void);
44
extern void console_close(void);
45
 
-
 
46
extern int console_phone_get(bool);
-
 
47
extern void console_wait(void);
45
extern void console_wait(void);
48
 
46
 
49
extern void console_clear(void);
47
extern void console_clear(void);
50
extern void console_goto(int, int);
48
extern void console_goto(int, int);
51
extern void console_putchar(wchar_t);
49
extern void console_putchar(wchar_t);
52
extern ssize_t console_write(const char *buf, size_t nbyte);
50
extern ssize_t console_write(const char *, size_t);
53
extern void console_putstr(const char *s);
51
extern void console_putstr(const char *);
54
extern void console_flush(void);
52
extern void console_flush(void);
55
 
53
 
56
extern int console_get_size(int *, int *);
54
extern int console_get_size(int *, int *);
57
extern void console_set_style(int);
55
extern void console_set_style(int);
58
extern void console_set_color(int, int, int);
56
extern void console_set_color(int, int, int);
Line 60... Line 58...
60
extern void console_cursor_visibility(int);
58
extern void console_cursor_visibility(int);
61
 
59
 
62
extern void console_kcon_enable(void);
60
extern void console_kcon_enable(void);
63
 
61
 
64
#endif
62
#endif
65
 
63
 
66
/** @}
64
/** @}
67
 */
65
 */