frame.h
来自「LINUX下POS收银系统,可以对货物及工作人员进行管理.近本实现增删改查的功能」· C头文件 代码 · 共 16 行
H
16 行
#ifndef _FRAME_H
#define _FRAME_H
#include <ncurses.h>
typedef struct frame
{
WINDOW *win;
int color;
void (*draw)(struct frame *);
void (*clearout)(struct frame *);
void (*free)(struct frame **);
}FRAME;
FRAME *creat_frame(int startx,int starty,int h,int l,int c);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?