Subversion Repositories Kolibri OS

Rev

Rev 9811 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9811 Rev 9812
Line 30... Line 30...
30
#define CON_BGR_BRIGHT 0x80
30
#define CON_BGR_BRIGHT 0x80
31
/* output controls */
31
/* output controls */
Line 32... Line 32...
32
 
32
 
Line 33... Line 33...
33
#define CON_IGNORE_SPECIALS 0x100
33
#define CON_IGNORE_SPECIALS 0x100
34
 
34
 
35
extern int _FUNC(con_init)(void);
35
DLLAPI int con_init(void);
36
extern int _FUNC(con_init_opt)(dword wnd_width, dword wnd_height, dword scr_width, dword scr_height, const char* title);
36
DLLAPI int con_init_opt(dword wnd_width, dword wnd_height, dword scr_width, dword scr_height, const char* title);
37
extern void __stdcall _FUNC((*con_exit))(int bCloseWindow);
37
extern void __stdcall _FUNC(*con_exit)(int bCloseWindow);
38
extern void __stdcall _FUNC((*con_set_title))(const char* title);
38
extern void __stdcall _FUNC((*con_set_title))(const char* title);
39
extern void __stdcall _FUNC((*con_write_asciiz))(const char* str);
39
extern void __stdcall _FUNC((*con_write_asciiz))(const char* str);
40
extern void __stdcall _FUNC((*con_write_string))(const char* str, dword length);
40
extern void __stdcall _FUNC((*con_write_string))(const char* str, dword length);
Line 51... Line 51...
51
typedef int __stdcall _FUNC (*con_gets2_callback)(int keycode, char** pstr, int* pn, int* ppos);
51
typedef int __stdcall _FUNC (*con_gets2_callback)(int keycode, char** pstr, int* pn, int* ppos);
52
extern char* __stdcall _FUNC((*con_gets2))(con_gets2_callback callback, char* str, int n);
52
extern char* __stdcall _FUNC((*con_gets2))(con_gets2_callback callback, char* str, int n);
53
extern void __stdcall _FUNC((*con_cls))();
53
extern void __stdcall _FUNC((*con_cls))();
54
extern void __stdcall _FUNC((*con_get_cursor_pos))(int* px, int* py);
54
extern void __stdcall _FUNC((*con_get_cursor_pos))(int* px, int* py);
55
extern void __stdcall _FUNC((*con_set_cursor_pos))(int x, int y);
55
extern void __stdcall _FUNC((*con_set_cursor_pos))(int x, int y);
56
extern int _FUNC(__con_is_load);
56
extern int __con_is_load;
Line 57... Line 57...
57
 
57