Changeset 11822 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Aug 29, 2008 2:21:03 PM (16 years ago)
- File:
-
- 1 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;
Note:
See TracChangeset
for help on using the changeset viewer.