Changeset 40195 in vbox for trunk/src/VBox/Additions/common/VBoxGuest
- Timestamp:
- Feb 21, 2012 12:48:41 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.cpp
r38882 r40195 734 734 KUSER_SHARED_DATA *pSharedUserData = (KUSER_SHARED_DATA *)KI_USER_SHARED_DATA; 735 735 736 pDevExt->fVRDPEnabled = TRUE;736 pDevExt->fVRDPEnabled = true; 737 737 LogRel(("VBoxGuest::vboxguestwinIOCtl: ENABLE_VRDP_SESSION: Current active console ID: 0x%08X\n", 738 738 pSharedUserData->ActiveConsoleId)); … … 751 751 KUSER_SHARED_DATA *pSharedUserData = (KUSER_SHARED_DATA *)KI_USER_SHARED_DATA; 752 752 753 pDevExt->fVRDPEnabled = FALSE;753 pDevExt->fVRDPEnabled = false; 754 754 Log(("VBoxGuest::vboxguestwinIOCtl: DISABLE_VRDP_SESSION: Current active console ID: 0x%08X\n", 755 755 pSharedUserData->ActiveConsoleId)); -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r40194 r40195 712 712 #ifdef 713 713 #ifdef VBOX_WITH_VRDP_SESSION_HANDLING 714 pDevExt->fVRDPEnabled = FALSE;714 pDevExt->fVRDPEnabled = false; 715 715 #endif 716 716 pDevExt->f32PendingEvents = 0; -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
r39515 r40195 113 113 /** The memory object reserving space for the guest mappings. */ 114 114 RTR0MEMOBJ hGuestMappings; 115 116 115 /** Spinlock protecting the signaling and resetting of the wait-for-event 117 116 * semaphores as well as the event acking in the ISR. */ … … 131 130 * the other lists which are only evaluated till the first thread has 132 131 * been woken up. */ 133 RTLISTANCHOR HGCMWaitList;132 RTLISTANCHOR HGCMWaitList; 134 133 #endif 135 134 #ifdef VBOXGUEST_USE_DEFERRED_WAKE_UP … … 152 151 RTSPINLOCK SessionSpinlock; 153 152 #ifdef VBOX_WITH_VRDP_SESSION_HANDLING 154 BOOLfVRDPEnabled;153 bool fVRDPEnabled; 155 154 #endif 156 155 /** Memory balloon information for RTR0MemObjAllocPhysNC(). */
Note:
See TracChangeset
for help on using the changeset viewer.