Changeset 11822 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Aug 29, 2008 2:21:03 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35653
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r11563 r11822 540 540 } 541 541 else VBoxControlError("Error retrieving handle to user32.dll!"); 542 542 543 543 return 0; 544 544 } … … 863 863 RegCloseKey(hkeyVideo); 864 864 } 865 865 866 866 return 0; 867 867 } … … 1223 1223 if (!onlyinfo) 1224 1224 { 1225 rrc = RTR3Init( false, 0);1225 rrc = RTR3Init(); /** @todo r=bird: This ALWAYS goes first, the only exception is when you have to parse args to figure out which to call! */ 1226 1226 if (!RT_SUCCESS(rrc)) 1227 1227 { -
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r10654 r11822 230 230 * Init globals and such. 231 231 */ 232 RTR3Init( false, 0);232 RTR3Init(); 233 233 g_pszProgName = RTPathFilename(argv[0]); 234 234 for (unsigned j = 0; j < RT_ELEMENTS(g_aServices); j++)
Note:
See TracChangeset
for help on using the changeset viewer.