pci_names.h

来自「linux下的MPEG1」· C头文件 代码 · 共 32 行

H
32
字号
/* * File: pci_names.h * This file was generated automatically. Don't modify it.*/#ifndef PCI_NAMES_INCLUDED#define PCI_NAMES_INCLUDED 1#ifdef __cplusplusextern "C" {#endifstruct device_id_s{	unsigned short	id;	const char *	name;};struct vendor_id_s{	unsigned short	id;	const char *	name;	const struct device_id_s *	dev_list;};extern const char *pci_vendor_name(unsigned short id);extern const char *pci_device_name(unsigned short vendor_id, unsigned short device_id);#ifdef __cplusplus}#endif#endif/*PCI_NAMES_INCLUDED*/

⌨️ 快捷键说明

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