kolibrios/programs/emulator/kwine/lib/conio.h
Rustem Gimadutdinov (rgimad) bdd9a3634d KWINE v0.0.3
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
2020-05-07 22:14:53 +00:00

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