summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-07-14 22:24:57 -0400
committermidipix <writeonce@midipix.org>2018-07-14 22:24:57 -0400
commitd6c3a19219a3aa0a288c4badba11a2a46cf862c5 (patch)
treebd764b46bbe29e09d0ad5b6861ff6c0e31b8742f
parent0d7eba4ac8a48e88adef2b78daefb39c41bbb575 (diff)
downloadperk-d6c3a19219.tar.bz2
perk-d6c3a19219.tar.xz
PE format: added struct pe_raw_archive_common_hdr.
-rw-r--r--include/perk/perk_structs.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h
index 09f4105..5cf49ae 100644
--- a/include/perk/perk_structs.h
+++ b/include/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