diff options
author | Christophe Grenier <[email protected]> | 2015-04-11 14:23:16 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2015-04-11 14:23:16 +0200 |
commit | 67054372873f2ed5414da7fff1cb5744148289d6 (patch) | |
tree | a8cd9501bcfc1e1efec8ca6603e7f11b0ad2ec0c /src/file_reg.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_reg.c')
-rw-r--r-- | src/file_reg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file_reg.c b/src/file_reg.c index 931891c0..b6f2e501 100644 --- a/src/file_reg.c +++ b/src/file_reg.c @@ -54,7 +54,7 @@ struct creg_file_header uint32_t uk2; uint32_t uk3; uint32_t uk4; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); struct rgdb_block { @@ -68,7 +68,7 @@ struct rgdb_block uint16_t first_free_id; uint32_t uk1; uint32_t chksum; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); static int header_check_reg_9x(const unsigned char *buffer, const unsigned int buffer_size, const unsigned int safe_header_only, const file_recovery_t *file_recovery, file_recovery_t *file_recovery_new) { @@ -102,7 +102,7 @@ struct regf_file_header uint8_t unknown5[ 64 ]; uint8_t unknown6[ 396 ]; uint32_t xor_checksum; -} __attribute__ ((__packed__)); +} __attribute__ ((gcc_struct, __packed__)); static int header_check_reg_nt(const unsigned char *buffer, const unsigned int buffer_size, const unsigned int safe_header_only, const file_recovery_t *file_recovery, file_recovery_t *file_recovery_new) { |