Files
30dayMakeOS/26_day/winhelo.c
2016-05-16 10:44:14 +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();
}