tccolor.h
来自「嵌入式打印机源代码 已经调试通过 炜煌系列打印机」· C头文件 代码 · 共 23 行
H
23 行
//---------------------------------------------------------------------------
#ifndef TCColorH
#define TCColorH
struct TCColor
{
union
{
TColor Color;
struct
{
unsigned char Red;
unsigned char Green;
unsigned char Blue;
unsigned char Reserved;
};
};
TCColor(TColor c):Color(c){}
TCColor(unsigned char R, unsigned char G, unsigned char B):
Red(R), Green(G), Blue(B), Reserved(0){}
};
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?