Changeset 36055 in vbox for trunk/include/VBox
- Timestamp:
- Feb 22, 2011 4:15:17 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70167
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/rawpci.h
r36028 r36055 84 84 { 85 85 /* in */ 86 RTGCPHYS StartAddress; 87 uint64_t iRegionSize; 86 88 RTR3PTR pvAddressR3; 87 RTR0PTR pvAddressR0; 89 RTR0PTR pvAddressR0; 88 90 } PCIRAWREQUNMAPREGION; 89 91 … … 292 294 DECLR0CALLBACKMEMBER(int, pfnMapRegion,(PRAWPCIDEVPORT pPort, 293 295 int32_t iRegion, 294 RTHCPHYS pRegionStart,296 RTHCPHYS RegionStart, 295 297 uint64_t u64RegionSize, 296 298 RTR0PTR *pRegionBase)); 299 300 /** 301 * Unmap PCI region. 302 * 303 * @param pPort Pointer to this structure. 304 */ 305 DECLR0CALLBACKMEMBER(int, pfnUnmapRegion,(PRAWPCIDEVPORT pPort, 306 RTHCPHYS RegionStart, 307 uint64_t u64RegionSize, 308 RTR0PTR RegionBase)); 297 309 298 310 /**
Note:
See TracChangeset
for help on using the changeset viewer.