Changeset 4778 in vbox for trunk/src/VBox
- Timestamp:
- Sep 13, 2007 3:55:58 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r4718 r4778 209 209 210 210 /** Pointer to the attached driver's base interface. */ 211 HCPTRTYPE(PPDMIBASE) pDrvBase;211 R3PTRTYPE(PPDMIBASE) pDrvBase; 212 212 /** Pointer to the attached driver's block interface. */ 213 HCPTRTYPE(PPDMIBLOCK) pDrvBlock;213 R3PTRTYPE(PPDMIBLOCK) pDrvBlock; 214 214 /** Pointer to the attached driver's block bios interface. */ 215 HCPTRTYPE(PPDMIBLOCKBIOS) pDrvBlockBios;215 R3PTRTYPE(PPDMIBLOCKBIOS) pDrvBlockBios; 216 216 /** Pointer to the attached driver's mount interface. 217 217 * This is NULL if the driver isn't a removable unit. */ 218 HCPTRTYPE(PPDMIMOUNT) pDrvMount;218 R3PTRTYPE(PPDMIMOUNT) pDrvMount; 219 219 /** The base interface. */ 220 220 PDMIBASE IBase;
Note:
See TracChangeset
for help on using the changeset viewer.