Changeset 89949 in vbox for trunk/include
- Timestamp:
- Jun 29, 2021 12:18:45 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145407
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmdrv.h
r88775 r89949 1335 1335 DECLR3CALLBACKMEMBER(int, pfnSTAMDeregisterByPrefix,(PPDMDRVINS pDrvIns, const char *pszPrefix)); 1336 1336 1337 /** 1338 * Queries a generic object from the VMM user. 1339 * 1340 * @returns Pointer to the object if found, NULL if not. 1341 * @param pDrvIns The driver instance. 1342 * @param pUuid The UUID of what's being queried. The UUIDs and 1343 * the usage conventions are defined by the user. 1344 */ 1345 DECLR3CALLBACKMEMBER(void *, pfnQueryGenericUserObject,(PPDMDRVINS pDrvIns, PCRTUUID pUuid)); 1346 1337 1347 DECLR3CALLBACKMEMBER(void, pfnReserved2,(PPDMDRVINS pDrvIns)); 1338 1348 DECLR3CALLBACKMEMBER(void, pfnReserved3,(PPDMDRVINS pDrvIns)); … … 1342 1352 DECLR3CALLBACKMEMBER(void, pfnReserved7,(PPDMDRVINS pDrvIns)); 1343 1353 DECLR3CALLBACKMEMBER(void, pfnReserved8,(PPDMDRVINS pDrvIns)); 1344 DECLR3CALLBACKMEMBER(void, pfnReserved9,(PPDMDRVINS pDrvIns));1345 1354 /** @} */ 1346 1355 … … 1864 1873 } 1865 1874 1875 /** 1876 * @copydoc PDMDRVHLPR3::pfnQueryGenericUserObject 1877 */ 1878 DECLINLINE(void *) PDMDrvHlpQueryGenericUserObject(PPDMDRVINS pDrvIns, PCRTUUID pUuid) 1879 { 1880 return pDrvIns->pHlpR3->pfnQueryGenericUserObject(pDrvIns, pUuid); 1881 } 1882 1866 1883 1867 1884 /** Pointer to callbacks provided to the VBoxDriverRegister() call. */
Note:
See TracChangeset
for help on using the changeset viewer.