Changeset 88373 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Apr 6, 2021 8:25:34 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143620
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdrv.h
r88305 r88373 1322 1322 /** @name Space reserved for minor interface changes. 1323 1323 * @{ */ 1324 DECLR3CALLBACKMEMBER( void, pfnReserved0,(PPDMDRVINS pDrvIns));1324 DECLR3CALLBACKMEMBER(int, pfnTimerSetMillies,(PPDMDRVINS pDrvIns, TMTIMERHANDLE hTimer, uint64_t cMilliesToNext)); 1325 1325 DECLR3CALLBACKMEMBER(void, pfnReserved1,(PPDMDRVINS pDrvIns)); 1326 1326 DECLR3CALLBACKMEMBER(void, pfnReserved2,(PPDMDRVINS pDrvIns)); … … 1338 1338 } PDMDRVHLPR3; 1339 1339 /** Current DRVHLP version number. */ 1340 #define PDM_DRVHLPR3_VERSION PDM_VERSION_MAKE(0xf0fb, 5, 0)1340 #define PDM_DRVHLPR3_VERSION PDM_VERSION_MAKE(0xf0fb, 5, 1) 1341 1341 1342 1342 #endif /* IN_RING3 */ … … 1524 1524 { 1525 1525 return pDrvIns->pHlpR3->pfnTimerCreate(pDrvIns, enmClock, pfnCallback, pvUser, fFlags, pszDesc, phTimer); 1526 } 1527 1528 /** 1529 * @copydoc PDMDRVHLPR3::pfnTimerSetMillies 1530 */ 1531 DECLINLINE(int) PDMDrvHlpTimerSetMillies(PPDMDRVINS pDrvIns, TMTIMERHANDLE hTimer, uint64_t cMilliesToNext) 1532 1533 { 1534 return pDrvIns->pHlpR3->pfnTimerSetMillies(pDrvIns, hTimer, cMilliesToNext); 1526 1535 } 1527 1536
Note:
See TracChangeset
for help on using the changeset viewer.