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

📄 devlist.h

📁 djgpp bt878 capture for DOS
💻 H
字号:
#ifndef DEVICE_LIST_H

#define DEVICE_LIST_H

#define _MAX_DEVICE 4
#include "pci.h"

class DEVICE_LIST
{
public:
    DEVICE_LIST();
    int GetDeviceCount();
    int GetBusNumber(int ind);
    int GetFunctionNumber(int ind);

private:
    int index;
    int count;
    PCI pci;
    int bus_number[_MAX_DEVICE];
    int function_number[_MAX_DEVICE];
    int vendorID[4];

};

#endif

    

⌨️ 快捷键说明

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