📄 vga.h
字号:
/* * vga.h * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of this archive * for more details. */#ifndef _XEN_VGA_H#define _XEN_VGA_H#include <xen/config.h>#ifdef CONFIG_VGAextern struct xen_vga_console_info vga_console_info;void vga_init(void);void vga_endboot(void);extern void (*vga_puts)(const char *);#else#define vga_init() ((void)0)#define vga_endboot() ((void)0)#define vga_puts(s) ((void)0)#endif#endif /* _XEN_VGA_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -