clockchip.h

来自「linux 下svgalib编的一个界面程序示例」· C头文件 代码 · 共 33 行

H
33
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?