Changeset 23816 in vbox for trunk/include/VBox
- Timestamp:
- Oct 16, 2009 11:47:32 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/ssm.h
r23801 r23816 373 373 /** Do not ignore any ignorable fields. */ 374 374 #define SSMSTRUCT_FLAGS_DONT_IGNORE RT_BIT_32(2) 375 /** Saved using SSMR3PutMem, don't be too strict. */ 376 #define SSMSTRUCT_FLAGS_SAVED_AS_MEM RT_BIT_32(3) 375 377 /** Band-aid for old SSMR3PutMem/SSMR3GetMem of structurs with host pointers. */ 376 #define SSMSTRUCT_FLAGS_MEM_BAND_AID (SSMSTRUCT_FLAGS_DONT_IGNORE | SSMSTRUCT_FLAGS_FULL_STRUCT | SSMSTRUCT_FLAGS_NO_MARKERS) 378 #define SSMSTRUCT_FLAGS_MEM_BAND_AID ( SSMSTRUCT_FLAGS_DONT_IGNORE | SSMSTRUCT_FLAGS_FULL_STRUCT \ 379 | SSMSTRUCT_FLAGS_NO_MARKERS | SSMSTRUCT_FLAGS_SAVED_AS_MEM) 377 380 /** Mask of the valid bits. */ 378 #define SSMSTRUCT_FLAGS_VALID_MASK UINT32_C(0x0000000 7)381 #define SSMSTRUCT_FLAGS_VALID_MASK UINT32_C(0x0000000f) 379 382 /** @} */ 380 383
Note:
See TracChangeset
for help on using the changeset viewer.