📄 fb.h
字号:
/****************************************************************************//* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -