HariboteOS/day16/include/window.h
2021-04-12 22:20:40 +08:00

10 lines
243 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);
#endif // _WINDOW_H_