Changeset 17163 in vbox for trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest_Internal.h
- Timestamp:
- Feb 26, 2009 1:10:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest_Internal.h
r13483 r17163 49 49 #endif 50 50 51 #include <iprt/spinlock.h> 52 51 53 #include <VBox/VBoxGuest.h> 52 54 … … 198 200 VMMDevEvents *irqAckEvents; 199 201 202 #ifdef VBOX_WITH_HGCM 203 /** Spinlock various items in the VBOXGUESTSESSION. */ 204 RTSPINLOCK SessionSpinlock; 205 #endif 200 206 201 207 struct … … 221 227 } winVersion_t; 222 228 extern winVersion_t winVersion; 229 230 #ifdef VBOX_WITH_HGCM 231 /** 232 * The VBoxGuest per session data. 233 * 234 * @remark Just to store hgcm ID's, perhaps could combine with one from common/VBoxGuest/vboxguestinternal.h? 235 */ 236 typedef struct VBOXGUESTSESSION 237 { 238 /** Array containing HGCM client IDs associated with this session. 239 * This will be automatically disconnected when the session is closed. */ 240 uint32_t volatile aHGCMClientIds[8]; 241 } VBOXGUESTSESSION, *PVBOXGUESTSESSION; 242 #endif 223 243 224 244 extern "C"
Note:
See TracChangeset
for help on using the changeset viewer.