diff options
author | Christophe Grenier <grenier@cgsecurity.org> | 2015-04-11 14:23:16 +0200 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2015-04-11 14:23:16 +0200 |
commit | 67054372873f2ed5414da7fff1cb5744148289d6 (patch) | |
tree | a8cd9501bcfc1e1efec8ca6603e7f11b0ad2ec0c /src/file_exe.c | |
parent | efc94ee87ac3b4e3ecf4fb3ab4adac2ef0a6278f (diff) |
add gcc_struct attribute to all __packed__ structure
do not use fseeko() with mingw32 gcc compiler
Diffstat (limited to 'src/file_exe.c')
-rw-r--r-- | src/file_exe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/file_exe.c b/src/file_exe.c index 9cd38f7..17097db 100644 --- a/src/file_exe.c +++ b/src/file_exe.c @@ -209,14 +209,14 @@ struct rsrc_entries_s { uint32_t Type; uint32_t Pos; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); struct PE_index { uint16_t len; uint16_t val_len; uint16_t type; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); static char vs_version_info[32]={ 'V', 0x0, 'S', 0x0, '_', 0x0, 'V', 0x0, 'E', 0x0, 'R', 0x0, 'S', 0x0, 'I', 0x0, |