kolibrios/contrib/sdk/sources/newlib/libc/sys/conio.c
turbocat 4633866c71 Newlibc: Added wrapper for all console.obj functions.
git-svn-id: svn://kolibrios.org@9716 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-02-13 13:51:56 +00:00

73 lines
1.6 KiB
C

#include <_ansi.h>
#include <stdio.h>
#include <sys/unistd.h>
#include "io.h"
#include <string.h>
extern void load_libconsole();
extern void __stdcall con_init(unsigned w_w, unsigned w_h, unsigned s_w, unsigned s_h, const char* t);
extern void __stdcall con_exit(char bCloseWindow);
extern void __stdcall con_write_string(const char* string, unsigned length);
extern char* __stdcall con_gets(char*, unsigned);
int __gui_mode;
static int console_read(const char *path, void *buff,
size_t offset, size_t count, size_t *done)
{
char *p = buff;
/*int cnt = 0;
short c;
char ch;*/
con_gets(p, count+1);
*done = strlen(p);
// __asm__ volatile("int3");
/*
do
{
c = con_getch2();
printf("%d\n",(char)c);
ch = (char)c;
if(ch != 0)
{
p[cnt] = ch != 0x0D ? ch : 0x0A;
con_write_string(p+cnt, 1);
cnt++;
}
}while(ch != 0x0D);
*done = cnt;
*/
return 0;
}
static int console_write(const char *path, const void *buff,
size_t offset, size_t count, size_t *writes)
{
con_write_string(buff, count);
*writes = count;
return 0;
};
void __init_conio()
{
__io_handle *ioh;
load_libconsole();
con_init(80, 25, 80, 500, "Console application");
ioh = &__io_tab[STDIN_FILENO];
ioh->mode = _READ|_ISTTY;
ioh->read = &console_read;
ioh = &__io_tab[STDOUT_FILENO];
ioh->mode = _WRITE|_ISTTY;
ioh->write = &console_write;
};
void __fini_conio()
{
con_exit(0);
}