Changeset 18348 in vbox for trunk/src/VBox/Main/ConsoleImpl2.cpp
- Timestamp:
- Mar 26, 2009 7:35:20 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r18323 r18348 834 834 rc = CFGMR3InsertNode(pCtlInst, "Config", &pCfg); RC_CHECK(); 835 835 fSCSI = true; 836 837 /* Attach the status driver */ 838 rc = CFGMR3InsertNode(pCtlInst, "LUN#999", &pLunL0); RC_CHECK(); 839 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK(); 840 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK(); 841 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapSCSILeds[0]); RC_CHECK(); 842 rc = CFGMR3InsertInteger(pCfg, "First", 0); RC_CHECK(); 843 rc = CFGMR3InsertInteger(pCfg, "Last", 15); RC_CHECK(); 836 844 break; 837 845 } … … 847 855 rc = CFGMR3InsertNode(pCtlInst, "Config", &pCfg); RC_CHECK(); 848 856 fSCSI = true; 857 858 /* Attach the status driver */ 859 rc = CFGMR3InsertNode(pCtlInst, "LUN#999", &pLunL0); RC_CHECK(); 860 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK(); 861 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK(); 862 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapSCSILeds[0]); RC_CHECK(); 863 rc = CFGMR3InsertInteger(pCfg, "First", 0); RC_CHECK(); 864 rc = CFGMR3InsertInteger(pCfg, "Last", 15); RC_CHECK(); 849 865 break; 850 866 }
Note:
See TracChangeset
for help on using the changeset viewer.