fb.h
来自「神龙解压卡Linux下的完整开发包,绝对是超值超值超值」· C头文件 代码 · 共 27 行
H
27 行
/****************************************************************************//* This file is derived from linux/drivers/video/vfb.c (Geert Uytterhoeven) *//****************************************************************************/#ifndef __FB_H__#define __FB_H__// struct encapsulation inspired from cyber2000fb.cstruct fbprivate { struct fb_info fb_info; int currcon; union {#ifdef FBCON_HAS_CFB16 u16 cfb16[16];#endif#ifdef FBCON_HAS_CFB24 u32 cfb24[16];#endif#ifdef FBCON_HAS_CFB32 u32 cfb32[16];#endif } fbcon_cmap; struct display dispzzz;};#endif // __FB_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?