HariboteOS/day21/include/window.h
2021-04-23 23:25:13 +08:00

11 lines
322 B
C

#include "sheet.h"
#ifndef _WINDOW_H_
#define _WINDOW_H_
void make_window8(unsigned char *buf, int xsize, int ysize, char *title, char act);
void make_textbox8(struct Sheet *sht, int x0, int y0, int sx, int sy, int c);
void make_window_title8(unsigned char *buf, int xsize, char *title, char act);
#endif // _WINDOW_H_