Changeset 81454 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Oct 22, 2019 4:04:00 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pgm.h
r80346 r81454 739 739 * @{ */ 740 740 /** Inidicates that ROM shadowing should be enabled. */ 741 #define PGMPHYS_ROM_FLAGS_SHADOWED RT_BIT_32(0)741 #define PGMPHYS_ROM_FLAGS_SHADOWED RT_BIT_32(0) 742 742 /** Indicates that what pvBinary points to won't go away 743 743 * and can be used for strictness checks. */ 744 #define PGMPHYS_ROM_FLAGS_PERMANENT_BINARY RT_BIT_32(1) 744 #define PGMPHYS_ROM_FLAGS_PERMANENT_BINARY RT_BIT_32(1) 745 /** Indicates that the ROM is allowed to be missing from saved state. 746 * @note This is a hack for EFI, see @bugref */ 747 #define PGMPHYS_ROM_FLAGS_MAYBE_MISSING_FROM_STATE RT_BIT_32(2) 748 /** Valid flags. */ 749 #define PGMPHYS_ROM_FLAGS_VALID_MASK UINT32_C(0x00000007) 745 750 /** @} */ 746 751
Note:
See TracChangeset
for help on using the changeset viewer.