Changeset 25893 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Jan 18, 2010 2:08:39 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56705
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r25771 r25893 1249 1249 /* szDriverName */ 1250 1250 "MainDisplay", 1251 /* szRCMod */ 1252 "", 1253 /* szR0Mod */ 1254 "", 1251 1255 /* pszDescription */ 1252 1256 "Main display driver (Main as in the API).", … … 1262 1266 VMDisplay::drvConstruct, 1263 1267 /* pfnDestruct */ 1268 NULL, 1269 /* pfnRelocate */ 1264 1270 NULL, 1265 1271 /* pfnIOCtl */ -
trunk/src/VBox/Frontends/VBoxBFE/KeyboardImpl.cpp
r22277 r25893 220 220 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0")) 221 221 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 222 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 222 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 223 223 ("Configuration error: Not possible to attach anything to this driver!\n"), 224 224 VERR_PDM_DRVINS_NO_ATTACH); … … 267 267 /* szDriverName */ 268 268 "MainKeyboard", 269 /* szRCMod */ 270 "", 271 /* szR0Mod */ 272 "", 269 273 /* pszDescription */ 270 274 "Main keyboard driver (Main as in the API).", … … 281 285 /* pfnDestruct */ 282 286 Keyboard::drvDestruct, 287 /* pfnRelocate */ 288 NULL, 283 289 /* pfnIOCtl */ 284 290 NULL, … … 294 300 NULL, 295 301 /* pfnDetach */ 296 NULL, 302 NULL, 297 303 /* pfnPowerOff */ 298 NULL, 304 NULL, 299 305 /* pfnSoftReset */ 300 306 NULL, -
trunk/src/VBox/Frontends/VBoxBFE/MouseImpl.cpp
r25771 r25893 274 274 /* szDriverName */ 275 275 "MainMouse", 276 /* szRCMod */ 277 "", 278 /* szR0Mod */ 279 "", 276 280 /* pszDescription */ 277 281 "Main mouse driver (Main as in the API).", … … 288 292 /* pfnDestruct */ 289 293 Mouse::drvDestruct, 294 /* pfnRelocate */ 295 NULL, 290 296 /* pfnIOCtl */ 291 297 NULL, -
trunk/src/VBox/Frontends/VBoxBFE/StatusImpl.cpp
r22277 r25893 141 141 if (!CFGMR3AreValuesValid(pCfgHandle, "papLeds\0First\0Last\0")) 142 142 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 143 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 143 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 144 144 ("Configuration error: Not possible to attach anything to this driver!\n"), 145 145 VERR_PDM_DRVINS_NO_ATTACH); … … 211 211 /* szDriverName */ 212 212 "MainStatus", 213 /* szRCMod */ 214 "", 215 /* szR0Mod */ 216 "", 213 217 /* pszDescription */ 214 218 "Main status driver (Main as in the API).", … … 225 229 /* pfnDestruct */ 226 230 VMStatus::drvDestruct, 231 /* pfnRelocate */ 232 NULL, 227 233 /* pfnIOCtl */ 228 234 NULL, … … 238 244 NULL, 239 245 /* pfnDetach */ 240 NULL, 246 NULL, 241 247 /* pfnPowerOff */ 242 NULL, 248 NULL, 243 249 /* pfnSoftReset */ 244 250 NULL, -
trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp
r22793 r25893 500 500 /* szDriverName */ 501 501 "HGCM", 502 /* szRCMod */ 503 "", 504 /* szR0Mod */ 505 "", 502 506 /* pszDescription */ 503 507 "Main VMMDev driver (Main as in the API).", … … 514 518 /* pfnDestruct */ 515 519 VMMDev::drvDestruct, 520 /* pfnRelocate */ 521 NULL, 516 522 /* pfnIOCtl */ 517 523 NULL,
Note:
See TracChangeset
for help on using the changeset viewer.