vga.h
来自「xen 3.2.2 源码」· C头文件 代码 · 共 26 行
H
26 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?