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

📄 clockchip.h

📁 linux 下svgalib编的一个界面程序示例
💻 H
字号:
/* * clockchip.h *//* ClockChipMethods type. */typedef struct {    /*     * The following function initializes the ClockChip; it is usually     * called once after detection.     */    void (*initialize) (CardSpecs * cardspecs, DacMethods * DAC);    /*      * ClockChip functions that override DAC methods.     */    void (*saveState) (unsigned char *regs);    void (*restoreState) (const unsigned char *regs);    void (*initializeState) (unsigned char *regs, int bpp, int colormode,			     int pixelclock);    /*     * Original DAC save and restore functions,      * to be called before clock manipulation.     */    void (*DAC_saveState) (unsigned char *regs);    void (*DAC_restoreState) (const unsigned char *regs);    void (*DAC_initializeState) (unsigned char *regs, int bpp, int colormode,				 int pixelclock);    long TextFrequency;    int DAC_stateSize;} ClockChipMethods;extern ClockChipMethods __svgalib_I2061A_clockchip_methods;

⌨️ 快捷键说明

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