HariboteOS/day24/app/winhello.c
2021-05-25 21:42:25 +08:00

12 lines
217 B
C

int api_open_win(char *buf, int xsize, int ysize, int col_inv, char *title);
void api_end(void);
char buf[150 * 50];
int main(void) {
int win = api_open_win(buf, 150, 50, -1, "hello");
api_end();
return 0;
}