Subversion Repositories SvarDOS

Rev

Rev 1360 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1360 Rev 1385
Line 60... Line 60...
60
/* clears screen, filling it with a single color attribute */
60
/* clears screen, filling it with a single color attribute */
61
void mdr_cout_cls(unsigned char colattr);
61
void mdr_cout_cls(unsigned char colattr);
62
 
62
 
63
void mdr_cout_getconprops(unsigned char *termwidth, unsigned char *termheight, unsigned char *colorflag);
63
void mdr_cout_getconprops(unsigned char *termwidth, unsigned char *termheight, unsigned char *colorflag);
64
 
64
 
-
 
65
 
-
 
66
/*****************************************************************************
65
/* functions below do not need mdr_cout_init() initialization, they may be
67
 * functions below do not need mdr_cout_init() initialization, they can be   *
66
 * used to display characters or nul-terminated strings to console right away
68
 * used to output data to console right away, as they use DOS services.      *
-
 
69
 *****************************************************************************/
-
 
70
 
67
 * as they use DOS services */
71
/* output a single character to console */
68
void mdr_coutraw_char(char c);
72
void mdr_coutraw_char(char c);
-
 
73
 
-
 
74
/* output a nul-terminated string */
-
 
75
void mdr_coutraw_str(const char *s);
-
 
76
 
-
 
77
/* same as above, but followed with a CR/LF line terminator */
69
void mdr_coutraw_puts(const char *s);
78
void mdr_coutraw_puts(const char *s);
70
 
79
 
-
 
80
/* outputs a DOS-style (CR/LF) newline to console */
-
 
81
void mdr_coutraw_crlf(void);
-
 
82
 
71
#endif
83
#endif