forked from KolibriOS/kolibrios
Rustem Gimadutdinov (rgimad)
bdd9a3634d
into msvcrt.dll added: - putchar - strchr - strrchr - strcpy - strncpy - memset - memcpy - memcmp - time - mktime - localtime - difftime - srand - rand new samples - rnd_arr1.exe - string2.exe git-svn-id: svn://kolibrios.org@7894 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
292 B
C
11 lines
292 B
C
#ifndef _CONIO_H
|
|
#define _CONIO_H
|
|
|
|
int _getch();
|
|
int _kbhit();
|
|
|
|
int con_init_console_dll(void);
|
|
int con_init_console_dll_param(uint32_t wnd_width, uint32_t wnd_height, uint32_t scr_width, uint32_t scr_height, const char* title);
|
|
void con_lib_link(void *exp, char** imports);
|
|
|
|
#endif |