Files
30dayMakeOS/25_day/winhelo.c
2016-05-13 10:23:23 +08:00

12 lines
209 B
C

int api_openwin(char *buf, int xsiz, int ysiz, int col_inv, char *title);
void api_end(void);
char buf[150 * 50];
void HariMain(void)
{
int win;
win = api_openwin(buf, 150, 50, -1, "hello");
api_end();
}