You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
470 B
C
21 lines
470 B
C
#ifndef CONIO_H
|
|
#define CONIO_H
|
|
|
|
#include <redbus.h>
|
|
#include <console.h>
|
|
|
|
#define redbus 0x0300
|
|
|
|
int conid = 0x01;
|
|
Console* con = (Console*)redbus;
|
|
char * strinv(char str[]);
|
|
void conprint(char * str, int x, int y);
|
|
void set_conid(int id);
|
|
int get_conid();
|
|
void set_cursor_pos(int x, int y);
|
|
void set_cursor_mode(int mode);
|
|
int get_cursor_mode();
|
|
void conclear();
|
|
void blit(char command, char x, char y, char xo, char yo, char w, char h);
|
|
char * read_keyboard();
|
|
#endif |