Changeset 68687 in vbox for trunk/include/iprt
- Timestamp:
- Sep 6, 2017 6:11:39 PM (7 years ago)
- Location:
- trunk/include/iprt/formats
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/formats/codeview.h
r62474 r68687 29 29 30 30 #include <iprt/types.h> 31 #include <iprt/assert .h>31 #include <iprt/assertcompile.h> 32 32 33 33 -
trunk/include/iprt/formats/elf32.h
r62474 r68687 28 28 #define ___iprt_formats_elf32_h 29 29 30 #include <iprt/assert.h> 31 30 #include <iprt/assertcompile.h> 32 31 #include "elf-common.h" 33 32 -
trunk/include/iprt/formats/elf64.h
r62474 r68687 28 28 #define ___iprt_formats_elf64_h 29 29 30 #include <iprt/assert.h> 31 30 #include <iprt/assertcompile.h> 32 31 #include "elf-common.h" 33 32 -
trunk/include/iprt/formats/fat.h
r67911 r68687 29 29 30 30 #include <iprt/types.h> 31 #include <iprt/assert .h>31 #include <iprt/assertcompile.h> 32 32 33 33 -
trunk/include/iprt/formats/hfs.h
r62474 r68687 29 29 30 30 #include <iprt/types.h> 31 #include <iprt/assert .h>31 #include <iprt/assertcompile.h> 32 32 33 33 -
trunk/include/iprt/formats/iso9660.h
r68399 r68687 29 29 30 30 #include <iprt/types.h> 31 #include <iprt/assert .h>31 #include <iprt/assertcompile.h> 32 32 33 33 -
trunk/include/iprt/formats/mz.h
r62474 r68687 29 29 30 30 #include <iprt/types.h> 31 #include <iprt/assert .h>31 #include <iprt/assertcompile.h> 32 32 33 33 typedef struct _IMAGE_DOS_HEADER -
trunk/include/iprt/formats/omf.h
r66446 r68687 33 33 34 34 #include <iprt/stdint.h> 35 #include <iprt/assertcompile.h> 35 36 36 37 … … 52 53 } OMFRECHDR; 53 54 #pragma pack() 55 AssertCompileSize(OMFRECHDR, 3); 54 56 /** Pointer to an OMF header. */ 55 57 typedef OMFRECHDR *POMFRECHDR; -
trunk/include/iprt/formats/pecoff.h
r67948 r68687 29 29 30 30 #include <iprt/types.h> 31 #include <iprt/assert .h>31 #include <iprt/assertcompile.h> 32 32 33 33 -
trunk/include/iprt/formats/udf.h
r68409 r68687 29 29 30 30 #include <iprt/types.h> 31 #include <iprt/assert .h>31 #include <iprt/assertcompile.h> 32 32 #include <iprt/formats/iso9660.h> 33 33 -
trunk/include/iprt/formats/xar.h
r68675 r68687 29 29 30 30 #include <iprt/types.h> 31 #include <iprt/assertcompile.h> 31 32 32 33 … … 53 54 } XARHEADER; 54 55 #pragma pack() 56 AssertCompileSize(XARHEADER, 28); 55 57 /** Pointer to a XAR header. */ 56 58 typedef XARHEADER *PXARHEADER;
Note:
See TracChangeset
for help on using the changeset viewer.