Changeset 25893 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 18, 2010 2:08:39 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56705
- Location:
- trunk/src/VBox/Main
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/AudioSnifferInterface.cpp
r22277 r25893 157 157 158 158 /** 159 * Construct a AudioSniffer driver instance. 160 * 159 * Construct a AudioSniffer driver instance. 160 * 161 161 * @copydoc FNPDMDRVCONSTRUCT 162 162 */ … … 172 172 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0")) 173 173 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 174 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 174 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 175 175 ("Configuration error: Not possible to attach anything to this driver!\n"), 176 176 VERR_PDM_DRVINS_NO_ATTACH); … … 221 221 /* szDriverName */ 222 222 "MainAudioSniffer", 223 /* szRCMod */ 224 "", 225 /* szR0Mod */ 226 "", 223 227 /* pszDescription */ 224 228 "Main Audio Sniffer driver (Main as in the API).", … … 235 239 /* pfnDestruct */ 236 240 AudioSniffer::drvDestruct, 241 /* pfnRelocate */ 242 NULL, 237 243 /* pfnIOCtl */ 238 244 NULL, … … 248 254 NULL, 249 255 /* pfnDetach */ 250 NULL, 256 NULL, 251 257 /* pfnPowerOff */ 252 NULL, 258 NULL, 253 259 /* pfnSoftReset */ 254 260 NULL, -
trunk/src/VBox/Main/ConsoleImpl.cpp
r25860 r25893 7976 7976 /* szDriverName */ 7977 7977 "MainStatus", 7978 /* szRCMod */ 7979 "", 7980 /* szR0Mod */ 7981 "", 7978 7982 /* pszDescription */ 7979 7983 "Main status driver (Main as in the API).", … … 7990 7994 /* pfnDestruct */ 7991 7995 Console::drvStatus_Destruct, 7996 /* pfnRelocate */ 7997 NULL, 7992 7998 /* pfnIOCtl */ 7993 7999 NULL, -
trunk/src/VBox/Main/DisplayImpl.cpp
r25860 r25893 3508 3508 /* szDriverName */ 3509 3509 "MainDisplay", 3510 /* szRCMod */ 3511 "", 3512 /* szR0Mod */ 3513 "", 3510 3514 /* pszDescription */ 3511 3515 "Main display driver (Main as in the API).", … … 3522 3526 /* pfnDestruct */ 3523 3527 Display::drvDestruct, 3528 /* pfnRelocate */ 3529 NULL, 3524 3530 /* pfnIOCtl */ 3525 3531 NULL, -
trunk/src/VBox/Main/KeyboardImpl.cpp
r25860 r25893 332 332 /* szDriverName */ 333 333 "MainKeyboard", 334 /* szRCMod */ 335 "", 336 /* szR0Mod */ 337 "", 334 338 /* pszDescription */ 335 339 "Main keyboard driver (Main as in the API).", … … 346 350 /* pfnDestruct */ 347 351 Keyboard::drvDestruct, 352 /* pfnRelocate */ 353 NULL, 348 354 /* pfnIOCtl */ 349 355 NULL, -
trunk/src/VBox/Main/MouseImpl.cpp
r25860 r25893 459 459 /* szDriverName */ 460 460 "MainMouse", 461 /* szRCMod */ 462 "", 463 /* szR0Mod */ 464 "", 461 465 /* pszDescription */ 462 466 "Main mouse driver (Main as in the API).", … … 473 477 /* pfnDestruct */ 474 478 Mouse::drvDestruct, 479 /* pfnRelocate */ 480 NULL, 475 481 /* pfnIOCtl */ 476 482 NULL, -
trunk/src/VBox/Main/VMMDevInterface.cpp
r22793 r25893 836 836 /* szDriverName */ 837 837 "HGCM", 838 /* szRCMod */ 839 "", 840 /* szR0Mod */ 841 "", 838 842 /* pszDescription */ 839 843 "Main VMMDev driver (Main as in the API).", … … 850 854 /* pfnDestruct */ 851 855 VMMDev::drvDestruct, 856 /* pfnRelocate */ 857 NULL, 852 858 /* pfnIOCtl */ 853 859 NULL, -
trunk/src/VBox/Main/include/KeyboardImpl.h
r23223 r25893 107 107 }; 108 108 109 #endif // ____H_KEYBOARDIMPL109 #endif // !____H_KEYBOARDIMPL 110 110 /* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note:
See TracChangeset
for help on using the changeset viewer.