Changeset 26173 in vbox for trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
- Timestamp:
- Feb 2, 2010 9:11:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r26166 r26173 1167 1167 * @copydoc FNPDMDRVCONSTRUCT 1168 1168 */ 1169 DECLCALLBACK(int) VMDisplay::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg Handle, uint32_t fFlags)1169 DECLCALLBACK(int) VMDisplay::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 1170 1170 { 1171 1171 PDRVMAINDISPLAY pData = PDMINS_2_DATA(pDrvIns, PDRVMAINDISPLAY); … … 1176 1176 * Validate configuration. 1177 1177 */ 1178 if (!CFGMR3AreValuesValid(pCfg Handle, "Object\0"))1178 if (!CFGMR3AreValuesValid(pCfg, "Object\0")) 1179 1179 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 1180 1180 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, … … 1209 1209 */ 1210 1210 void *pv; 1211 int rc = CFGMR3QueryPtr(pCfg Handle, "Object", &pv);1211 int rc = CFGMR3QueryPtr(pCfg, "Object", &pv); 1212 1212 if (RT_FAILURE(rc)) 1213 1213 {
Note:
See TracChangeset
for help on using the changeset viewer.