gpcdrv.h

来自「一个操作系统源代码 用于嵌入式设备 在Vc++环境下仿真 成功移植到多款处理器上」· C头文件 代码 · 共 32 行

H
32
字号
#ifndef C_DEVICE_H
#define C_DEVICE_H

#include <asixdef.h>

#define BYTEPERPIXEL    1
#define BITPERPIXEL     (BYTEPERPIXEL*8)

#define COPY_PUT        1
#define XOR_PUT         2
#define OR_PUT          3
#define AND_PUT         4
#define NOT_PUT         5

typedef struct tagPHYIMAGEINFO
{
    SHORT x;
    SHORT y;
    SHORT width;
    SHORT height;
    BYTE  *buffer;
    BYTE  method;
    BYTE	mode;
    WORD  ColorIndex;
    WORD  BkColorIndex;
} PHYIMAGEINFO, *PPHYIMAGEINFO;



#endif /* C_DEVICE_H */
//----------------------------- The End of the File ----------------------------

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?