Changeset 88665 in vbox for trunk/include
- Timestamp:
- Apr 22, 2021 11:42:24 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143979
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/VBox/vmm/pdmdrv.h ¶
r88373 r88665 1323 1323 * @{ */ 1324 1324 DECLR3CALLBACKMEMBER(int, pfnTimerSetMillies,(PPDMDRVINS pDrvIns, TMTIMERHANDLE hTimer, uint64_t cMilliesToNext)); 1325 DECLR3CALLBACKMEMBER(void, pfnReserved1,(PPDMDRVINS pDrvIns)); 1325 1326 /** 1327 * Deregister zero or more samples given their name prefix. 1328 * 1329 * @returns VBox status code. 1330 * @param pDrvIns The driver instance. 1331 * @param pszPrefix The name prefix of the samples to remove. If this does 1332 * not start with a '/', the default prefix will be 1333 * prepended, otherwise it will be used as-is. 1334 */ 1335 DECLR3CALLBACKMEMBER(int, pfnSTAMDeregisterByPrefix,(PPDMDRVINS pDrvIns, const char *pszPrefix)); 1336 1326 1337 DECLR3CALLBACKMEMBER(void, pfnReserved2,(PPDMDRVINS pDrvIns)); 1327 1338 DECLR3CALLBACKMEMBER(void, pfnReserved3,(PPDMDRVINS pDrvIns)); … … 1338 1349 } PDMDRVHLPR3; 1339 1350 /** Current DRVHLP version number. */ 1340 #define PDM_DRVHLPR3_VERSION PDM_VERSION_MAKE(0xf0fb, 5, 1)1351 #define PDM_DRVHLPR3_VERSION PDM_VERSION_MAKE(0xf0fb, 5, 2) 1341 1352 1342 1353 #endif /* IN_RING3 */ … … 1732 1743 1733 1744 /** 1745 * @copydoc PDMDEVHLPR3::pfnSTAMDeregisterByPrefix 1746 */ 1747 DECLINLINE(int) PDMDrvHlpSTAMDeregisterByPrefix(PPDMDRVINS pDrvIns, const char *pszPrefix) 1748 { 1749 return pDrvIns->pHlpR3->pfnSTAMDeregisterByPrefix(pDrvIns, pszPrefix); 1750 } 1751 1752 /** 1734 1753 * @copydoc PDMDRVHLPR3::pfnSUPCallVMMR0Ex 1735 1754 */
Note:
See TracChangeset
for help on using the changeset viewer.