Changeset 26173 in vbox for trunk/src/VBox/Main/DisplayImpl.cpp
- Timestamp:
- Feb 2, 2010 9:11:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r26166 r26173 3407 3407 * @copydoc FNPDMDRVCONSTRUCT 3408 3408 */ 3409 DECLCALLBACK(int) Display::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg Handle, uint32_t fFlags)3409 DECLCALLBACK(int) Display::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 3410 3410 { 3411 3411 PDRVMAINDISPLAY pData = PDMINS_2_DATA(pDrvIns, PDRVMAINDISPLAY); … … 3416 3416 * Validate configuration. 3417 3417 */ 3418 if (!CFGMR3AreValuesValid(pCfg Handle, "Object\0"))3418 if (!CFGMR3AreValuesValid(pCfg, "Object\0")) 3419 3419 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 3420 3420 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, … … 3469 3469 */ 3470 3470 void *pv; 3471 int rc = CFGMR3QueryPtr(pCfg Handle, "Object", &pv);3471 int rc = CFGMR3QueryPtr(pCfg, "Object", &pv); 3472 3472 if (RT_FAILURE(rc)) 3473 3473 {
Note:
See TracChangeset
for help on using the changeset viewer.