Changeset 12653 in vbox for trunk/include/VBox/pdmins.h
- Timestamp:
- Sep 22, 2008 4:03:25 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36942
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmins.h
r11297 r12653 50 50 #define PDMINS_2_DATA(pIns, type) ( (type)(void *)&(pIns)->achInstanceData[0] ) 51 51 52 /** @def PDMINS 2DATA_RCPTR52 /** @def PDMINS_2_DATA_RCPTR 53 53 * Converts a PDM Device, USB Device, or Driver instance pointer to a RC pointer to the instance data. 54 54 */ 55 55 #define PDMINS_2_DATA_RCPTR(pIns) ( (pIns)->pvInstanceDataGC ) 56 56 57 /** @def PDMINS 2DATA_R3PTR57 /** @def PDMINS_2_DATA_R3PTR 58 58 * Converts a PDM Device, USB Device, or Driver instance pointer to a HC pointer to the instance data. 59 59 */ 60 60 #define PDMINS_2_DATA_R3PTR(pIns) ( (pIns)->pvInstanceDataR3 ) 61 61 62 /** @def PDMINS 2DATA_R0PTR62 /** @def PDMINS_2_DATA_R0PTR 63 63 * Converts a PDM Device, USB Device, or Driver instance pointer to a R0 pointer to the instance data. 64 64 */
Note:
See TracChangeset
for help on using the changeset viewer.