Changeset 21095 in vbox for trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
- Timestamp:
- Jun 30, 2009 6:54:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
r21069 r21095 97 97 /** Mask of pending events. */ 98 98 uint32_t volatile f32PendingEvents; 99 /** Current VMMDEV_EVENT_MOUSE_POSITION_CHANGED sequence number. 100 * Used to implement polling. */ 101 uint32_t volatile u32MousePosChangedSeq; 99 102 100 103 /** Spinlock various items in the VBOXGUESTSESSION. */ … … 144 147 uint32_t volatile aHGCMClientIds[8]; 145 148 #endif 149 150 /** The last consumed VMMDEV_EVENT_MOUSE_POSITION_CHANGED sequence number. 151 * Used to implement polling. */ 152 uint32_t volatile u32MousePosChangedSeq; 146 153 } VBOXGUESTSESSION; 147 154 … … 170 177 #endif 171 178 179 /** 180 * ISR callback for notifying threads polling for mouse events. 181 * 182 * @param pDevExt The device extension. 183 */ 184 void VBoxGuestNativeISRMousePollEvent(PVBOXGUESTDEVEXT pDevExt); 185 172 186 RT_C_DECLS_END 173 187
Note:
See TracChangeset
for help on using the changeset viewer.