Changeset 93364 in vbox for trunk/include/VBox
- Timestamp:
- Jan 20, 2022 12:23:13 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149446
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/ostypes.h
r93115 r93364 41 41 * depend on the values (e.g. the Qt GUI and guest additions) so the 42 42 * existing values MUST stay the same. 43 *44 * Note: distinguish between 32 & 64 bits guest OSes by checking bit 8 (mod 0x100)45 43 */ 46 44 typedef enum VBOXOSTYPE … … 48 46 VBOXOSTYPE_Unknown = 0, 49 47 VBOXOSTYPE_Unknown_x64 = 0x00100, 48 50 49 /** @name DOS and it's descendants 51 50 * @{ */ … … 154 153 /** @} */ 155 154 156 /** The bit number which indicates 64-bit or 32-bit. */ 157 #define VBOXOSTYPE_x64_BIT 8 158 /** The mask which indicates 64-bit. */ 159 VBOXOSTYPE_x64 = 1 << VBOXOSTYPE_x64_BIT, 155 /** OS type mask. */ 156 VBOXOSTYPE_OsTypeMask = 0x00fff000, 157 158 /** @name Architecture Type 159 * @{ */ 160 /** Mask containing the architecture value. */ 161 VBOXOSTYPE_ArchitectureMask = 0x00f00, 162 /** Architecture value for 16-bit and 32-bit x86. */ 163 VBOXOSTYPE_x86 = 0x00000, 164 /** Architecture value for 64-bit x86 (AMD64). */ 165 VBOXOSTYPE_x64 = 0x00100, 166 /** Architecture value for 32-bit ARM. */ 167 VBOXOSTYPE_arm32 = 0x00200, 168 /** Architecture value for 64-bit ARM. */ 169 VBOXOSTYPE_arm64 = 0x00300, 170 /** Architecture value for unknown or unsupported architectures. */ 171 VBOXOSTYPE_UnknownArch = 0x00f00, 172 /** @} */ 160 173 161 174 /** The usual 32-bit hack. */ 162 VBOXOSTYPE_32BIT_HACK = 0x7fffffff175 VBOXOSTYPE_32BIT_HACK = 0x7fffffff 163 176 } VBOXOSTYPE; 164 177
Note:
See TracChangeset
for help on using the changeset viewer.