Changeset 26161 in vbox for trunk/include/VBox
- Timestamp:
- Feb 2, 2010 6:47:03 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57175
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdrv.h
r26151 r26161 65 65 * 66 66 * @returns VBox status. 67 * @param pDrvIns The driver instance data. 68 * If the registration structure is needed, pDrvIns->pDrvReg points to it. 69 * @param pCfgHandle Configuration node handle for the driver. Use this to obtain the configuration 70 * of the driver instance. It's also found in pDrvIns->pCfgHandle as it's expected 71 * to be used frequently in this function. 67 * @param pDrvIns The driver instance data. If the registration structure 68 * is needed, it can be accessed thru pDrvIns->pReg. 69 * @param pCfgHandle Configuration node handle for the driver. Use this to 70 * obtain the configuration of the driver instance. It's 71 * also found in pDrvIns->pCfgHandle as it's expected to be 72 * used frequently in this function. 72 73 * @param fFlags Flags, combination of the PDM_TACH_FLAGS_* \#defines. 73 74 */ … … 364 365 365 366 /** Pointer to driver registration structure. */ 366 R3PTRTYPE(PCPDMDRVREG) p DrvReg;367 R3PTRTYPE(PCPDMDRVREG) pReg; 367 368 /** Configuration handle. */ 368 369 R3PTRTYPE(PCFGMNODE) pCfgHandle; … … 1254 1255 * @returns VBox status code. 1255 1256 * @param pCallbacks Pointer to the callback table. 1256 * @param p DrvRegPointer to the driver registration record.1257 * @param pReg Pointer to the driver registration record. 1257 1258 * This data must be permanent and readonly. 1258 1259 */ 1259 DECLR3CALLBACKMEMBER(int, pfnRegister,(PCPDMDRVREGCB pCallbacks, PCPDMDRVREG p DrvReg));1260 DECLR3CALLBACKMEMBER(int, pfnRegister,(PCPDMDRVREGCB pCallbacks, PCPDMDRVREG pReg)); 1260 1261 } PDMDRVREGCB; 1261 1262
Note:
See TracChangeset
for help on using the changeset viewer.