mirror of
https://github.com/yourtion/30dayMakeOS.git
synced 2026-02-02 17:49:01 +08:00
19 lines
512 B
C
19 lines
512 B
C
int api_openwin(char *buf, int xsiz, int ysiz, int col_inv, char *title);
|
|
void api_boxfilwin(int win, int x0, int y0, int x1, int y1, int col);
|
|
void api_initmalloc(void);
|
|
char *api_malloc(int size);
|
|
void api_point(int win, int x, int y, int col);
|
|
void api_end(void);
|
|
|
|
void HariMain(void)
|
|
{
|
|
char *buf;
|
|
int win;
|
|
api_initmalloc();
|
|
buf = api_malloc(150 * 100);
|
|
win = api_openwin(buf, 150, 100, -1, "star1");
|
|
api_boxfilwin(win, 6, 26, 143, 93, 0);/*黑色*/
|
|
api_point(win, 75, 59, 3);/*黄色*/
|
|
api_end();
|
|
}
|