Changeset 45645 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Apr 19, 2013 1:46:48 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85155
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdev.h
r45024 r45645 40 40 #include <VBox/err.h> 41 41 #include <VBox/pci.h> 42 #include <VBox/sup.h> 42 43 #include <iprt/stdarg.h> 43 44 … … 3602 3603 DECLR3CALLBACKMEMBER(uint64_t, pfnTMTimeVirtGetNano,(PPDMDEVINS pDevIns)); 3603 3604 3605 /** 3606 * Gets the support driver session. 3607 * 3608 * This is intended for working with the semaphore API. 3609 * 3610 * @returns Support driver session handle. 3611 * @param pDrvIns The driver instance. 3612 */ 3613 DECLR3CALLBACKMEMBER(PSUPDRVSESSION, pfnGetSupDrvSession,(PPDMDEVINS pDevIns)); 3614 3604 3615 /** @} */ 3605 3616 … … 3614 3625 3615 3626 /** Current PDMDEVHLPR3 version number. */ 3616 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE(0xffe7, 1 1, 0)3627 #define PDM_DEVHLPR3_VERSION PDM_VERSION_MAKE(0xffe7, 12, 0) 3617 3628 3618 3629 … … 5190 5201 } 5191 5202 5203 /* 5204 * @copydoc PDMDEVHLPR3::pfnGetSupDrvSession 5205 */ 5206 DECLINLINE(PSUPDRVSESSION) PDMDevHlpGetSupDrvSession(PPDMDEVINS pDevIns) 5207 { 5208 return pDevIns->pHlpR3->pfnGetSupDrvSession(pDevIns); 5209 } 5192 5210 #endif /* IN_RING3 */ 5193 5211 #ifdef IN_RING0
Note:
See TracChangeset
for help on using the changeset viewer.