Changeset 11822 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Aug 29, 2008 2:21:03 PM (16 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
r10778 r11822 409 409 410 410 if (0 == ghSeamlessNotifyEvent) /* If seamless mode is not active / supported, reduce event array count */ 411 dwEventCount = 1; 411 dwEventCount = 1; 412 412 413 413 Log(("VBoxTray: Number of events to wait in main loop: %ld\n", dwEventCount)); … … 491 491 /* Do not use a global namespace ("Global\\") for mutex name here, will blow up NT4 compatibility! */ 492 492 HANDLE hMutexAppRunning = CreateMutex (NULL, FALSE, "VBoxTray"); 493 if ( (hMutexAppRunning != NULL) 493 if ( (hMutexAppRunning != NULL) 494 494 && (GetLastError() == ERROR_ALREADY_EXISTS)) 495 495 { … … 500 500 } 501 501 502 int rc = RTR3Init( false);502 int rc = RTR3Init(); 503 503 if (RT_FAILURE(rc)) 504 504 return rc; -
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++) -
trunk/src/VBox/Additions/x11/xclient/main.cpp
r11648 r11822 196 196 197 197 /* Initialise our runtime before all else. */ 198 RTR3Init( false);198 RTR3Init(); 199 199 200 200 /* Parse our option(s) */ -
trunk/src/VBox/Additions/x11/xclient/testcase/tstSeamlessX11.cpp
r8155 r11822 110 110 std::string sTmp; 111 111 112 RTR3Init( false);112 RTR3Init(); 113 113 std::cout << "VirtualBox guest additions X11 seamless mode testcase" << std::endl; 114 114 if (0 == XInitThreads())
Note:
See TracChangeset
for help on using the changeset viewer.