Subversion Repositories Kolibri OS

Rev

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

Rev 6429 Rev 7520
Line 13... Line 13...
13
#define stdcall __attribute__ ((stdcall))
13
#define stdcall __attribute__ ((stdcall))
Line 14... Line 14...
14
 
14
 
15
/*
15
/*
16
console.obj exports the following functions
16
console.obj exports the following functions
17
*/
17
*/
18
typedef unsigned long dword; /* 32-bit unsigned integer */
18
typedef unsigned int dword; /* 32-bit unsigned integer */
Line 19... Line 19...
19
typedef unsigned short word; /* 16-bit unsigned integer */
19
typedef unsigned short word; /* 16-bit unsigned integer */
20
 
20
 
21
extern void stdcall (*con_init)(dword wnd_width, dword wnd_height,
21
extern void stdcall (*con_init)(dword wnd_width, dword wnd_height,
Line 192... Line 192...
192
extern int con_init_console_dll(void);
192
extern int con_init_console_dll(void);
193
/*	load library and link function symbols. returns 1 if error
193
/*	load library and link function symbols. returns 1 if error
194
called automatic in printf, otherwise, see __console_initdll_status
194
called automatic in printf, otherwise, see __console_initdll_status
195
*/
195
*/
Line -... Line 196...
-
 
196
 
-
 
197
extern int con_init_console_dll_param(dword wnd_width, dword wnd_height,
-
 
198
	dword scr_width, dword scr_height, const char* title);
-
 
199
/*	work as con_init_console_dll, but call con_init with params
-
 
200
*/
-
 
201
 
196
 
202