Changeset 476 in vbox
- Timestamp:
- Jan 31, 2007 10:24:26 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18079
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pci.h
r1 r476 96 96 { 97 97 /** PCI config space. */ 98 uint8_t config[256];98 uint8_t config[256]; 99 99 100 100 /** Read only data. … … 102 102 */ 103 103 /** PCI device number on the pci bus. */ 104 int devfn; 104 int32_t devfn; 105 uint32_t Alignment0; /**< Alignment. */ 105 106 /** Device name. */ 106 const char *name;107 R3PTRTYPE(const char *) name; 107 108 /** Pointer to the device instance which registered the device. */ 108 PPDMDEVINS HCpDevIns;109 PPDMDEVINSR3 pDevIns; 109 110 /** @} */ 110 111 … … 113 114 { 114 115 #ifdef __PCIDEVICEINT_DECLARED__ 115 PCIDEVICEINT s;116 PCIDEVICEINT s; 116 117 #endif 117 char padding[196];118 char padding[224]; 118 119 } Int; 119 120 } PCIDEVICE;
Note:
See TracChangeset
for help on using the changeset viewer.