Changeset 5972 in vbox
- Timestamp:
- Dec 5, 2007 7:26:21 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r5755 r5972 1401 1401 rc = CFGMR3InsertInteger(pCfg, "Last", 0); RC_CHECK(); 1402 1402 } 1403 else 1403 1404 #endif 1405 { 1406 /* 1407 * Enable the 2.0 -> 1.1 device morphing of proxied devies to keep windows quiet. 1408 */ 1409 rc = CFGMR3InsertNode(pRoot, "USB", &pCfg); RC_CHECK(); 1410 rc = CFGMR3InsertNode(pCfg, "USBProxy", &pCfg); RC_CHECK(); 1411 rc = CFGMR3InsertNode(pCfg, "GlobalConfig", &pCfg); RC_CHECK(); 1412 rc = CFGMR3InsertInteger(pCfg, "Force11Device", true); RC_CHECK(); 1413 // The following breaks stuff, but it makes MSDs work in vista. (I include it here so 1414 // that it's documented somewhere.) Users needing it can use: 1415 // VBoxManage setextradata "myvm" "VBoxInternal/USB/USBProxy/GlobalConfig/Force11PacketSize" 1 1416 //rc = CFGMR3InsertInteger(pCfg, "Force11PacketSize", true); RC_CHECK(); 1417 } 1404 1418 } 1405 1419 }
Note:
See TracChangeset
for help on using the changeset viewer.