Changeset 101371 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Oct 6, 2023 1:23:31 AM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 159374
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.