⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vga16.h

📁 linux下的图形界面开发minigui最新源代码
💻 H
字号:
//// $Id: vga16.h,v 1.2 2001/09/24 02:44:43 ymwei Exp $//// vga16.h: the head file of VGA 16-color GAL engine.//// Created by WEI Yongming, 2001/09/21//#ifndef GUI_GAL_VGA16_H    #define GUI_GAL_VGA16_H#ifdef __cplusplusextern "C" {#endif  /* __cplusplus */typedef struct tagGC_VGA16{    int doclip;	int clipminx, clipminy, clipmaxx, clipmaxy;    int xres, yres;    int pitch;    gal_pixel gr_background;    gal_pixel gr_foreground;    unsigned char scanline[640];	unsigned char* fb_buff;} GC_VGA16;BOOL InitVGA16 (GFX* gfx);void TermVGA16 (GFX* gfx);#ifdef __cplusplus}#endif  /* __cplusplus */#endif  /* GUI_GAL_VGA16_H */

⌨️ 快捷键说明

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