VirtualBox

Changeset 93364 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Jan 20, 2022 12:23:13 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
149446
Message:

VBox/ostypes.h: Grab 4-bits of the VBOXOSTYPE value for specifying the architecture, explicitly defining x86 in addition to the existing AMD64 one and adding a few potential ones plus a generic UnknownArch value that can be used in ISO detection code. bugref:10182

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/ostypes.h

    r93115 r93364  
    4141 * depend on the values (e.g. the Qt GUI and guest additions) so the
    4242 * existing values MUST stay the same.
    43  *
    44  * Note: distinguish between 32 & 64 bits guest OSes by checking bit 8 (mod 0x100)
    4543 */
    4644typedef enum VBOXOSTYPE
     
    4846    VBOXOSTYPE_Unknown          = 0,
    4947    VBOXOSTYPE_Unknown_x64      = 0x00100,
     48
    5049    /** @name DOS and it's descendants
    5150     * @{ */
     
    154153    /** @} */
    155154
    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    /** @} */
    160173
    161174    /** The usual 32-bit hack. */
    162     VBOXOSTYPE_32BIT_HACK = 0x7fffffff
     175    VBOXOSTYPE_32BIT_HACK    = 0x7fffffff
    163176} VBOXOSTYPE;
    164177
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette