diff options
author | midipix <writeonce@midipix.org> | 2017-02-08 22:26:00 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-02-08 22:28:40 -0500 |
commit | 5d3a9331a3ced5aa0898839f651c9ec004c9f6f4 (patch) | |
tree | 39801820ecb87f1c02d3d2c1a4b9e250ac1d30f3 | |
parent | bbf7fc20ab7b3b762e60ceb1cd19655877d2f329 (diff) | |
download | mdso-5d3a9331a3ced5aa0898839f651c9ec004c9f6f4.tar.bz2 mdso-5d3a9331a3ced5aa0898839f651c9ec004c9f6f4.tar.xz |
PE defs.: added struct pe_raw_archive_common_hdr.
-rw-r--r-- | src/internal/perk/perk_structs.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/internal/perk/perk_structs.h b/src/internal/perk/perk_structs.h index 09f4105..5cf49ae 100644 --- a/src/internal/perk/perk_structs.h +++ b/src/internal/perk/perk_structs.h @@ -350,6 +350,17 @@ struct pe_raw_aux_rec_section { unsigned char aux_pad [0x03]; /* 0x0f */ }; +struct pe_raw_archive_common_hdr { + unsigned char ar_file_id [0x10]; /* 0x00 */ + unsigned char ar_time_date_stamp [0x0c]; /* 0x10 */ + unsigned char ar_uid [0x06]; /* 0x1c */ + unsigned char ar_gid [0x06]; /* 0x22 */ + unsigned char ar_file_mode [0x08]; /* 0x28 */ + unsigned char ar_file_size [0x0a]; /* 0x30 */ + unsigned char ar_end_tag [0x02]; /* 0x3a */ + +}; + #ifdef __cplusplus } #endif |