- Timestamp:
- Sep 7, 2017 10:36:50 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDevCoreTypes.h
r68690 r68691 88 88 * 89 89 * @ingroup grp_vmmdev_req 90 *91 * @todo DARN! DARN! DARN! Who forgot to do the 32-bit hack here???92 * FIXME! XXX!93 *94 * We will now have to carefully check how our compilers have treated this95 * flag. If any are compressing it into a byte type, we'll have to check96 * how the request memory is initialized. If we are 104% sure it's ok to97 * expand it, we'll expand it. If not, we must redefine the field to a98 * uint8_t and a 3 byte padding.99 90 */ 100 91 typedef enum … … 102 93 VMMDev_Seamless_Disabled = 0, /**< normal mode; entire guest desktop displayed. */ 103 94 VMMDev_Seamless_Visible_Region = 1, /**< visible region mode; only top-level guest windows displayed. */ 104 VMMDev_Seamless_Host_Window = 2 /**< windowed mode; each top-level guest window is represented in a host window. */ 95 VMMDev_Seamless_Host_Window = 2, /**< windowed mode; each top-level guest window is represented in a host window. */ 96 VMMDev_Seamless_SizeHack = 0x7fffffff 105 97 } VMMDevSeamlessMode; 98 AssertCompileSize(VMMDevSeamlessMode, 4); 106 99 107 100 … … 121 114 VMMDevCpuEventType_SizeHack = 0x7fffffff 122 115 } VMMDevCpuEventType; 116 AssertCompileSize(VMMDevCpuEventType, 4); 123 117 124 118
Note:
See TracChangeset
for help on using the changeset viewer.