bmp.h
来自「QX44B0的BIOS源代码」· C头文件 代码 · 共 22 行
H
22 行
#ifndef __BMP_H_
#define __BMP_H_
#include "..\inc\def.h"
#define BLACK 0xff
#define ALLBLACK ((BLACK << 24) | (BLACK << 16) | (BLACK << 8) | BLACK)
#define WHITE 0x0
#define ALLWHITE ((WHITE << 24) | (WHITE << 16) | (WHITE << 8) | WHITE)
#define LIGHTGRAY 0xa0
#define DARKGRAY 0x50
#define TRANSPARENCY 0xff
#define RED 0xe0
#define GREEN 0x1c
#define BLUE 0x03
void BitmapActiveView320x240x256(INT8U *pucBuffer);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?