Changeset 7635 in vbox for trunk/src/VBox/Devices/VMMDev/VMMDevState.h
- Timestamp:
- Mar 28, 2008 5:15:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDevState.h
r7072 r7635 1 /* $Id$ */ 1 2 /** @file 2 * 3 * VBox Guest/VMM/host communication: 4 * HGCM - Host-Guest Communication Manager header 3 * VMMDev - Guest <-> VMM/Host communication device, Internal header. 5 4 */ 6 5 … … 17 16 */ 18 17 19 #ifndef __ VMMDevState_h__20 #define __ VMMDevState_h__18 #ifndef ___VMMDevState_h___ 19 #define ___VMMDevState_h___ 21 20 22 21 #include <VBox/cdefs.h> … … 72 71 /** Current host side event flags */ 73 72 uint32_t u32HostEventFlags; 74 /** Mask of events guest is interested in. Note that the HGCM events 73 /** Mask of events guest is interested in. Note that the HGCM events 75 74 * are enabled automatically by the VMMDev device when guest issues 76 75 * HGCM commands. … … 136 135 137 136 /* guest ram size */ 138 uint64_t u64GuestRAMSize;137 uint64_t cbGuestRAM; 139 138 140 139 /* statistics interval change request */ … … 146 145 bool fVRDPEnabled; 147 146 uint32_t u32VRDPExperienceLevel; 148 147 149 148 #ifdef TIMESYNC_BACKDOOR 150 149 bool fTimesyncBackdoorLo; 151 150 uint64_t hostTime; 152 151 #endif 153 /** Set if GetHostTime should fail. 152 /** Set if GetHostTime should fail. 154 153 * Loaded from the GetHostTimeDisabled configuration value. */ 155 154 bool fGetHostTimeDisabled; … … 185 184 uint32_t u32NotMask); 186 185 187 #endif /* __VMMDevState_h__ */ 186 #endif /* !___VMMDevState_h___ */ 187
Note:
See TracChangeset
for help on using the changeset viewer.