Changeset 76440 in vbox for trunk/include/iprt
- Timestamp:
- Dec 24, 2018 3:14:59 PM (6 years ago)
- Location:
- trunk/include/iprt/formats
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/formats/pecoff.h
r73396 r76440 688 688 /** Unwind opcode. 689 689 * For AMD64 see IMAGE_AMD64_UNWIND_OP_CODES. */ 690 uint8_t UnwindOp : 4;690 RT_GCC_EXTENSION uint8_t UnwindOp : 4; 691 691 /** Opcode specific. */ 692 uint8_t OpInfo : 4;692 RT_GCC_EXTENSION uint8_t OpInfo : 4; 693 693 } u; 694 694 uint16_t FrameOffset; … … 706 706 { 707 707 /** Version, currently 1 or 2. The latter if IMAGE_AMD64_UWOP_EPILOG is used. */ 708 uint8_tVersion : 3;708 RT_GCC_EXTENSION uint8_t Version : 3; 709 709 /** IMAGE_UNW_FLAG_XXX */ 710 uint8_tFlags : 5;710 RT_GCC_EXTENSION uint8_t Flags : 5; 711 711 /** Size of function prolog. */ 712 uint8_t SizeOfProlog;712 uint8_t SizeOfProlog; 713 713 /** Number of opcodes in aOpcodes. */ 714 uint8_t CountOfCodes;714 uint8_t CountOfCodes; 715 715 /** Initial frame register. */ 716 uint8_tFrameRegister : 4;716 RT_GCC_EXTENSION uint8_t FrameRegister : 4; 717 717 /** Scaled frame register offset. */ 718 uint8_tFrameOffset : 4;718 RT_GCC_EXTENSION uint8_t FrameOffset : 4; 719 719 /** Unwind opcodes. */ 720 720 IMAGE_UNWIND_CODE aOpcodes[RT_FLEXIBLE_ARRAY]; -
trunk/include/iprt/formats/udf.h
r69059 r76440 233 233 #ifdef RT_BIG_ENDIAN 234 234 /** 0x00: Type (UDFTIMESTAMP_T_XXX). */ 235 uint16_tfType : 4;235 RT_GCC_EXTENSION uint16_t fType : 4; 236 236 /** 0x00: Time zone offset in minutes. 237 237 * For EST this will be -300, whereas for CET it will be 60. */ 238 int16_toffUtcInMin : 12;238 RT_GCC_EXTENSION int16_t offUtcInMin : 12; 239 239 #else 240 240 /** 0x00: Time zone offset in minutes. 241 241 * For EST this will be -300, whereas for CET it will be 60. */ 242 int16_toffUtcInMin : 12;242 RT_GCC_EXTENSION int16_t offUtcInMin : 12; 243 243 /** 0x00: Type (UDFTIMESTAMP_T_XXX). */ 244 uint16_tfType : 4;244 RT_GCC_EXTENSION uint16_t fType : 4; 245 245 #endif 246 246 /** 0x02: The year. */
Note:
See TracChangeset
for help on using the changeset viewer.