ixdp2400pci.h

来自「ixp2400 bsp for vxworks」· C头文件 代码 · 共 45 行

H
45
字号
/* Copyright 1998 Wind River Systems, Inc.; Copyright 1999 Intel Corp. *//*modification history--------------------01b,14jan03,scm  move enum PciBarId from here...01a,25mar02,lagarwal  created from ixp1200eb_be*/#ifndef INCixp2400pcih#define INCixp2400pcih#ifdef __cplusplusextern "C" {#endiftypedef struct {    UINT32 size;    UINT32 address;} PciBar;typedef struct {    int bus;    int device;    int func;    int irq;    UINT16 vendor_id;    UINT16 device_id;    PciBar bar[6];} PciDevice;#if defined(__cplusplus)extern "C"{#endif				/* __cplusplus */extern PciDevice *pciInfoGet(unsigned short device);extern PciDevice *pciInfoSearch ( int bus, int device, int func, int count);extern PciDevice *pciDeviceGet ( int vendor_id, int device_id, int count);#ifdef __cplusplus}#endif#endif				/* ifndef INCixp2400pcih */

⌨️ 快捷键说明

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