pci_emulation.h

来自「xen虚拟机源代码安装包」· C头文件 代码 · 共 30 行

H
30
字号
/* * Changes to PCI emulation made by Marathon Technologies, June 2008 */#ifndef PCI_EMULATION_H#define PCI_EMULATION_Htypedef struct PCI_EMULATION_INFO_t {    struct PCI_EMULATION_INFO_t *next;    char name[32];    unsigned int vendorid;    unsigned int deviceid;    unsigned int command;    unsigned int status;    unsigned int revision;    unsigned int classcode;    unsigned int headertype;    unsigned int subvendorid;    unsigned int subsystemid;    unsigned int interruputline;    unsigned int interruputpin;}   PCI_EMULATION_INFO;    void parse_pci_emulation_info(char *config_text, PCI_EMULATION_INFO *pci_emulation_info);void pci_emulation_init(PCIBus *bus, PCI_EMULATION_INFO *pci_emulation_info);extern PCI_EMULATION_INFO *PciEmulationInfoHead;#endif /*PCI_EMULATION_H*/

⌨️ 快捷键说明

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