mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-02 17:49:01 +08:00
12 lines
209 B
C
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();
|
|
}
|