forked from KolibriOS/kolibrios
728f124678
Configured autobuild git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
69 lines
2.5 KiB
C
69 lines
2.5 KiB
C
#include <sys/ksys.h>
|
|
#include "conio.h"
|
|
|
|
static char* __con_caption = "Console application";
|
|
static char* __con_dllname = "/sys/lib/console.obj";
|
|
|
|
int __con_is_load = 0;
|
|
|
|
void stdcall (*__con_init_hidden)(int wnd_width, int wnd_height,int scr_width, int scr_height, const char* title);
|
|
void stdcall (*__con_write_asciiz)(const char* str);
|
|
void stdcall (*__con_write_string)(const char* str, unsigned length);
|
|
int stdcall (*__con_getch)(void);
|
|
short stdcall (*__con_getch2)(void);
|
|
int stdcall (*__con_kbhit)(void);
|
|
char* stdcall (*__con_gets)(char* str, int n);
|
|
char* stdcall (*__con_gets2)(__con_gets2_callback callback, char* str, int n);
|
|
void stdcall (*__con_exit)(int status);
|
|
void stdcall (*__con_set_title)(const char* title);
|
|
|
|
static void __con_panic(char* func_name)
|
|
{
|
|
_ksys_debug_puts("libc.obj: ");
|
|
_ksys_debug_puts(func_name);
|
|
_ksys_debug_puts(" = NULL\n");
|
|
_ksys_exit();
|
|
}
|
|
|
|
static void __con_lib_link(ksys_coff_etable_t *exp)
|
|
{
|
|
__con_init_hidden = _ksys_get_coff_func(exp, "con_init", __con_panic);
|
|
__con_write_asciiz = _ksys_get_coff_func(exp, "con_write_asciiz", __con_panic);
|
|
__con_write_string = _ksys_get_coff_func(exp, "con_write_string", __con_panic);
|
|
__con_getch = _ksys_get_coff_func(exp, "con_getch", __con_panic);
|
|
__con_getch2 = _ksys_get_coff_func(exp, "con_getch2", __con_panic);
|
|
__con_kbhit = _ksys_get_coff_func(exp, "con_kbhit", __con_panic);
|
|
__con_gets = _ksys_get_coff_func(exp, "con_gets", __con_panic);
|
|
__con_gets2 = _ksys_get_coff_func(exp, "con_gets2", __con_panic);
|
|
__con_exit = _ksys_get_coff_func(exp, "con_exit", __con_panic);
|
|
__con_set_title = _ksys_get_coff_func(exp, "con_set_title", __con_panic);
|
|
}
|
|
|
|
|
|
int __con_init(void)
|
|
{
|
|
return __con_init_opt(-1, -1, -1, -1, __con_caption);
|
|
}
|
|
|
|
void con_set_title(const char* title){
|
|
__con_init();
|
|
__con_set_title(title);
|
|
}
|
|
|
|
int __con_init_opt(int wnd_width, int wnd_height,int scr_width, int scr_height, const char* title)
|
|
{
|
|
if(!__con_is_load){
|
|
ksys_coff_etable_t *__con_lib;
|
|
__con_lib = _ksys_load_coff(__con_dllname);
|
|
if(__con_lib==NULL){
|
|
_ksys_debug_puts("Error! Can't load console.obj lib\n");
|
|
return 1;
|
|
}
|
|
__con_lib_link(__con_lib);
|
|
__con_init_hidden(wnd_width, wnd_height, scr_width, scr_height, title);
|
|
__con_is_load= 1;
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|