dsplcdstruct.h
来自「自己编写的DSP 键盘扫描程序」· C头文件 代码 · 共 61 行
H
61 行
#define uchar unsigned char
#define uint unsigned int
typedef struct
{
uchar Back;
uchar Front;
uchar Wide;
uchar High;
int x;
uchar y;
}Word_Inf;
//********************************************************************
typedef struct
{
uint Front;
uint Back;
uint Wide;
uint High;
int x;
int y;
int Count;
uchar *WordShape;
}Static_Line;
//*********************************************************************
typedef struct
{
uint Front;
uint Back;
uchar Wide;
uchar High;
int x;
int y;
long *DispVar;
}Var_Line;
//*******************************************************************
typedef struct
{
Static_Line StaticLine;
Var_Line VarLine;
}Line;
//*****************************************************************
typedef struct
{
uint KeyNo;
void (*Fun)();
}Page_KeyEnable;
typedef struct
{
uint Front;
uint Back;
uint Wide;
uint High;
int Count;
uchar *WordShape;
}Draw_Front;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?