Subversion Repositories Kolibri OS

Rev

Rev 8930 | Rev 9716 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8930 Rev 9354
Line 13... Line 13...
13
void     __stdcall con_cls(void);
13
void     __stdcall con_cls(void);
14
void     __stdcall con_write_string(const char* string, unsigned length);
14
void     __stdcall con_write_string(const char* string, unsigned length);
15
short    __stdcall con_getch2(void);
15
short    __stdcall con_getch2(void);
16
char*    __stdcall con_gets(char*, unsigned);
16
char*    __stdcall con_gets(char*, unsigned);
Line -... Line 17...
-
 
17
 
-
 
18
extern void __stdcall (*con_set_title_ptr)(char*);
17
 
19
 
Line 18... Line 20...
18
int __gui_mode;
20
int __gui_mode;
19
 
21
 
20
void con_init_opt(unsigned w_w, unsigned w_h, unsigned s_w, unsigned s_h, const char* t){
22
void con_init_opt(unsigned w_w, unsigned w_h, unsigned s_w, unsigned s_h, const char* t){
Line 78... Line 80...
78
void __fini_conio()
80
void __fini_conio()
79
{
81
{
80
    con_exit(0);
82
    con_exit(0);
81
}
83
}
Line 82... Line -...
82
-
 
-
 
84
 
83
85
void con_set_title(char *title)
-
 
86
{
84
87
    con_set_title_ptr(title);