Changeset 101371 in vbox
- Timestamp:
- Oct 6, 2023 1:23:31 AM (18 months ago)
- svn:sync-xref-src-repo-rev:
- 159374
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r101370 r101371 284 284 </cpp> 285 285 </if> 286 287 <!-- 288 Macros for helping with constructing guest OS type ID strings for the 289 different architectures. 290 --> 291 <cpp line="#define GUEST_OS_ID_STR_X86(a_szOSid) a_szOSid"/> 292 <cpp line="#if 0 /** @todo r=bird: revert to legacy naming: */"/> 293 <cpp line="#define GUEST_OS_ID_STR_X64(a_szOSid) a_szOSid "_64""/> 294 <cpp line="#else"/> 295 <cpp line="#define GUEST_OS_ID_STR_X64(a_szOSid) a_szOSid "_x64""/> 296 <cpp line="#endif"/> 297 <cpp line="#define GUEST_OS_ID_STR_A32(a_szOSid) a_szOSid "_arm32""/> 298 <cpp line="#define GUEST_OS_ID_STR_A64(a_szOSid) a_szOSid "_arm64""/> 299 <cpp line="#define GUEST_OS_ID_STR_AMD64(a_szOSid) GUEST_OS_ID_STR_X64(a_szOSid)"/> 300 <cpp line="#define GUEST_OS_ID_STR_ARM32(a_szOSid) GUEST_OS_ID_STR_A32(a_szOSid)"/> 301 <cpp line="#define GUEST_OS_ID_STR_ARM64(a_szOSid) GUEST_OS_ID_STR_A64(a_szOSid)"/> 286 302 287 303 <!-- -
trunk/src/VBox/Main/src-all/Global.cpp
r101370 r101371 44 44 #define VBOX_OSTYPE_ARM32(a_OStype) VBOXOSTYPE_ ## a_OStype ## _arm32 45 45 #define VBOX_OSTYPE_ARM64(a_OStype) VBOXOSTYPE_ ## a_OStype ## _arm64 46 47 /** @todo r=bird: These macros should move to VBox/cdefs.h or a similarly easily48 * accessible file, so that the GUI can make use of them too. */49 /* Note: Keep this naming for legacy reasons. Always meant x86 (32-bit). */50 #define GUEST_OS_ID_STR_X86(a_szOSid) a_szOSid51 #if 0 /** @todo r=bird: revert to legacy naming: */52 #define GUEST_OS_ID_STR_X64(a_szOSid) a_szOSid "_64"53 #else54 #define GUEST_OS_ID_STR_X64(a_szOSid) a_szOSid "_x64"55 #endif56 /* New since VBox 7.1. */57 #define GUEST_OS_ID_STR_A32(a_szOSid) a_szOSid "_arm32"58 /* New since VBox 7.1. */59 #define GUEST_OS_ID_STR_A64(a_szOSid) a_szOSid "_arm64"60 46 61 47 /* static */
Note:
See TracChangeset
for help on using the changeset viewer.