Mercurial > libpst
annotate src/libpst.h @ 150:06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 05 Mar 2009 08:23:32 -0800 |
parents | fdc58ad2c758 |
children | cda7c812ec01 |
rev | line source |
---|---|
16 | 1 /*** |
2 * libpst.h | |
3 * Part of LibPST project | |
4 * Written by David Smith | |
46 | 5 * dave.s@earthcorp.com |
16 | 6 */ |
7 // LibPST - Library for Accessing Outlook .pst files | |
8 // Dave Smith - davesmith@users.sourceforge.net | |
9 | |
10 #ifndef LIBPST_H | |
11 #define LIBPST_H | |
12 | |
132
5e4d6faada34
fix from Fridrich Strba for parallel make
Carl Byington <carl@five-ten-sg.com>
parents:
130
diff
changeset
|
13 #include "common.h" |
130
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
14 |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
15 |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
16 // switch to maximal packing for all structures in the libpst interface |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
17 // this is reverted at the end of this file |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
18 #ifdef _MSC_VER |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
19 #pragma pack(push, 1) |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
20 #endif |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
21 #if defined(__GNUC__) || defined (__SUNPRO_C) || defined(__SUNPRO_CC) |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
22 #pragma pack(1) |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
23 #endif |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
24 |
16 | 25 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
26 #define PST_TYPE_NOTE 1 |
16 | 27 #define PST_TYPE_APPOINTMENT 8 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
28 #define PST_TYPE_CONTACT 9 |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
29 #define PST_TYPE_JOURNAL 10 |
16 | 30 #define PST_TYPE_STICKYNOTE 11 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
31 #define PST_TYPE_TASK 12 |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
32 #define PST_TYPE_OTHER 13 |
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
33 #define PST_TYPE_REPORT 14 |
16 | 34 |
35 // defines whether decryption is done on this bit of data | |
36 #define PST_NO_ENC 0 | |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
37 #define PST_ENC 1 |
16 | 38 |
39 // defines types of possible encryption | |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
40 #define PST_NO_ENCRYPT 0 |
16 | 41 #define PST_COMP_ENCRYPT 1 |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
42 #define PST_ENCRYPT 2 |
16 | 43 |
44 // defines different types of mappings | |
46 | 45 #define PST_MAP_ATTRIB (uint32_t)1 |
46 #define PST_MAP_HEADER (uint32_t)2 | |
16 | 47 |
48 // define my custom email attributes. | |
49 #define PST_ATTRIB_HEADER -1 | |
50 | |
51 // defines types of free/busy values for appointment->showas | |
52 #define PST_FREEBUSY_FREE 0 | |
53 #define PST_FREEBUSY_TENTATIVE 1 | |
54 #define PST_FREEBUSY_BUSY 2 | |
55 #define PST_FREEBUSY_OUT_OF_OFFICE 3 | |
56 | |
57 // defines labels for appointment->label | |
46 | 58 #define PST_APP_LABEL_NONE 0 // None |
16 | 59 #define PST_APP_LABEL_IMPORTANT 1 // Important |
46 | 60 #define PST_APP_LABEL_BUSINESS 2 // Business |
61 #define PST_APP_LABEL_PERSONAL 3 // Personal | |
62 #define PST_APP_LABEL_VACATION 4 // Vacation | |
16 | 63 #define PST_APP_LABEL_MUST_ATTEND 5 // Must Attend |
64 #define PST_APP_LABEL_TRAVEL_REQ 6 // Travel Required | |
65 #define PST_APP_LABEL_NEEDS_PREP 7 // Needs Preparation | |
46 | 66 #define PST_APP_LABEL_BIRTHDAY 8 // Birthday |
16 | 67 #define PST_APP_LABEL_ANNIVERSARY 9 // Anniversary |
68 #define PST_APP_LABEL_PHONE_CALL 10// Phone Call | |
69 | |
50 | 70 // define type of reccuring event |
71 #define PST_APP_RECUR_NONE 0 | |
72 #define PST_APP_RECUR_DAILY 1 | |
73 #define PST_APP_RECUR_WEEKLY 2 | |
74 #define PST_APP_RECUR_MONTHLY 3 | |
75 #define PST_APP_RECUR_YEARLY 4 | |
76 | |
49 | 77 |
46 | 78 typedef struct pst_misc_6_struct { |
49 | 79 int32_t i1; |
80 int32_t i2; | |
81 int32_t i3; | |
82 int32_t i4; | |
83 int32_t i5; | |
84 int32_t i6; | |
16 | 85 } pst_misc_6; |
86 | |
49 | 87 |
46 | 88 typedef struct pst_entryid_struct { |
49 | 89 int32_t u1; |
90 char entryid[16]; | |
91 uint32_t id; | |
16 | 92 } pst_entryid; |
93 | |
49 | 94 |
46 | 95 typedef struct pst_desc_struct32 { |
49 | 96 uint32_t d_id; |
97 uint32_t desc_id; | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
98 uint32_t tree_id; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
99 uint32_t parent_d_id; |
43 | 100 } pst_desc32; |
16 | 101 |
49 | 102 |
46 | 103 typedef struct pst_desc_structn { |
49 | 104 uint64_t d_id; |
105 uint64_t desc_id; | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
106 uint64_t tree_id; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
107 uint32_t parent_d_id; // not 64 bit ?? |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
108 uint32_t u1; // padding |
43 | 109 } pst_descn; |
110 | |
49 | 111 |
46 | 112 typedef struct pst_index_struct32 { |
49 | 113 uint32_t id; |
114 uint32_t offset; | |
115 uint16_t size; | |
116 int16_t u1; | |
43 | 117 } pst_index32; |
118 | |
49 | 119 |
46 | 120 typedef struct pst_index_struct { |
49 | 121 uint64_t id; |
122 uint64_t offset; | |
123 uint16_t size; | |
124 int16_t u0; | |
125 int32_t u1; | |
16 | 126 } pst_index; |
127 | |
49 | 128 |
46 | 129 typedef struct pst_index_tree32 { |
49 | 130 uint32_t id; |
131 uint32_t offset; | |
132 uint32_t size; | |
133 int32_t u1; | |
134 struct pst_index_tree * next; | |
43 | 135 } pst_index_ll32; |
136 | |
49 | 137 |
46 | 138 typedef struct pst_index_tree { |
49 | 139 uint64_t id; |
140 uint64_t offset; | |
141 uint64_t size; | |
142 int64_t u1; | |
142
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
143 struct pst_index_tree *next; |
16 | 144 } pst_index_ll; |
145 | |
49 | 146 |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
147 typedef struct pst_id2_tree { |
49 | 148 uint64_t id2; |
149 pst_index_ll *id; | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
150 struct pst_id2_tree *child; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
151 struct pst_id2_tree *next; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
152 } pst_id2_ll; |
16 | 153 |
49 | 154 |
46 | 155 typedef struct pst_desc_tree { |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
156 uint64_t d_id; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
157 uint64_t parent_d_id; |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
142
diff
changeset
|
158 pst_index_ll *desc; |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
159 pst_index_ll *assoc_tree; |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
142
diff
changeset
|
160 int32_t no_child; |
142
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
161 struct pst_desc_tree *prev; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
162 struct pst_desc_tree *next; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
163 struct pst_desc_tree *parent; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
164 struct pst_desc_tree *child; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
165 struct pst_desc_tree *child_tail; |
16 | 166 } pst_desc_ll; |
167 | |
49 | 168 |
46 | 169 typedef struct pst_item_email_subject { |
49 | 170 int off1; |
171 int off2; | |
172 char *subj; | |
16 | 173 } pst_item_email_subject; |
174 | |
49 | 175 |
46 | 176 typedef struct pst_item_email { |
142
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
177 FILETIME *arrival_date; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
178 int autoforward; // 1 = true, 0 = not set, -1 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
179 char *body; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
180 int32_t body_was_unicode; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
181 char *cc_address; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
182 char *bcc_address; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
183 char *common_name; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
184 int32_t conv_index; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
185 int conversion_prohib; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
186 int delete_after_submit; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
187 int delivery_report; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
188 char *encrypted_body; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
189 size_t encrypted_body_size; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
190 char *encrypted_htmlbody; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
191 size_t encrypted_htmlbody_size; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
192 int32_t flag; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
193 char *header; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
194 char *htmlbody; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
195 int32_t htmlbody_was_unicode; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
196 int32_t importance; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
197 char *in_reply_to; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
198 int message_cc_me; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
199 int message_recip_me; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
200 int message_to_me; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
201 char *messageid; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
202 int32_t orig_sensitivity; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
203 char *original_bcc; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
204 char *original_cc; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
205 char *original_to; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
206 char *outlook_recipient; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
207 char *outlook_recipient_name; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
208 char *outlook_recipient2; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
209 char *outlook_sender; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
210 char *outlook_sender_name; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
211 char *outlook_sender2; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
212 int32_t priority; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
213 char *proc_subject; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
214 int read_receipt; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
215 char *recip_access; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
216 char *recip_address; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
217 char *recip2_access; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
218 char *recip2_address; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
219 int reply_requested; // 1 = true, 0 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
220 char *reply_to; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
221 char *return_path_address; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
222 int32_t rtf_body_char_count; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
223 int32_t rtf_body_crc; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
224 char *rtf_body_tag; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
225 char *rtf_compressed; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
226 uint32_t rtf_compressed_size; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
227 int rtf_in_sync; // 1 = true, 0 = doesn't exist, -1 = false |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
228 int32_t rtf_ws_prefix_count; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
229 int32_t rtf_ws_trailing_count; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
230 char *sender_access; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
231 char *sender_address; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
232 char *sender2_access; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
233 char *sender2_address; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
234 int32_t sensitivity; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
235 FILETIME *sent_date; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
236 pst_entryid *sentmail_folder; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
237 char *sentto_address; |
49 | 238 pst_item_email_subject *subject; |
142
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
239 // delivery report fields |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
240 char *report_text; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
241 int32_t report_was_unicode; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
242 FILETIME *report_time; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
243 int32_t ndr_reason_code; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
244 int32_t ndr_diag_code; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
245 char *supplementary_info; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
246 int32_t ndr_status_code; |
16 | 247 } pst_item_email; |
248 | |
49 | 249 |
46 | 250 typedef struct pst_item_folder { |
49 | 251 int32_t email_count; |
252 int32_t unseen_email_count; | |
253 int32_t assoc_count; | |
254 int subfolder; // 1 = true, 0 = false | |
16 | 255 } pst_item_folder; |
256 | |
49 | 257 |
46 | 258 typedef struct pst_item_message_store { |
51 | 259 pst_entryid *top_of_personal_folder; // 0x35e0 |
260 pst_entryid *default_outbox_folder; // 0x35e2 | |
261 pst_entryid *deleted_items_folder; // 0x35e3 | |
262 pst_entryid *sent_items_folder; // 0x35e4 | |
263 pst_entryid *user_views_folder; // 0x35e5 | |
264 pst_entryid *common_view_folder; // 0x35e6 | |
265 pst_entryid *search_root_folder; // 0x35e7 | |
266 pst_entryid *top_of_folder; // 0x7c07 | |
267 int32_t valid_mask; // 0x35df // what folders the message store contains | |
268 int32_t pwd_chksum; // 0x76ff | |
16 | 269 } pst_item_message_store; |
270 | |
49 | 271 |
46 | 272 typedef struct pst_item_contact { |
49 | 273 char *access_method; |
274 char *account_name; | |
275 char *address1; | |
276 char *address1a; | |
277 char *address1_desc; | |
278 char *address1_transport; | |
279 char *address2; | |
280 char *address2a; | |
281 char *address2_desc; | |
282 char *address2_transport; | |
283 char *address3; | |
284 char *address3a; | |
285 char *address3_desc; | |
286 char *address3_transport; | |
287 char *assistant_name; | |
288 char *assistant_phone; | |
289 char *billing_information; | |
290 FILETIME *birthday; | |
51 | 291 char *business_address; // 0x801b |
49 | 292 char *business_city; |
293 char *business_country; | |
294 char *business_fax; | |
295 char *business_homepage; | |
296 char *business_phone; | |
297 char *business_phone2; | |
298 char *business_po_box; | |
299 char *business_postal_code; | |
300 char *business_state; | |
301 char *business_street; | |
302 char *callback_phone; | |
303 char *car_phone; | |
304 char *company_main_phone; | |
305 char *company_name; | |
306 char *computer_name; | |
307 char *customer_id; | |
308 char *def_postal_address; | |
309 char *department; | |
310 char *display_name_prefix; | |
311 char *first_name; | |
312 char *followup; | |
313 char *free_busy_address; | |
314 char *ftp_site; | |
315 char *fullname; | |
51 | 316 int16_t gender; |
49 | 317 char *gov_id; |
318 char *hobbies; | |
51 | 319 char *home_address; // 0x801a |
49 | 320 char *home_city; |
321 char *home_country; | |
322 char *home_fax; | |
323 char *home_phone; | |
324 char *home_phone2; | |
325 char *home_po_box; | |
326 char *home_postal_code; | |
327 char *home_state; | |
328 char *home_street; | |
329 char *initials; | |
330 char *isdn_phone; | |
331 char *job_title; | |
332 char *keyword; | |
333 char *language; | |
334 char *location; | |
51 | 335 int mail_permission; // 1 = true, 0 = false |
49 | 336 char *manager_name; |
337 char *middle_name; | |
338 char *mileage; | |
339 char *mobile_phone; | |
340 char *nickname; | |
341 char *office_loc; | |
342 char *org_id; | |
51 | 343 char *other_address; // 0x801c |
49 | 344 char *other_city; |
345 char *other_country; | |
346 char *other_phone; | |
347 char *other_po_box; | |
348 char *other_postal_code; | |
349 char *other_state; | |
350 char *other_street; | |
351 char *pager_phone; | |
352 char *personal_homepage; | |
353 char *pref_name; | |
354 char *primary_fax; | |
355 char *primary_phone; | |
356 char *profession; | |
357 char *radio_phone; | |
51 | 358 int rich_text; // 1 = true, 0 = false |
49 | 359 char *spouse_name; |
360 char *suffix; | |
361 char *surname; | |
362 char *telex; | |
363 char *transmittable_display_name; | |
364 char *ttytdd_phone; | |
365 FILETIME *wedding_anniversary; | |
51 | 366 char *work_address_street; // 0x8045 |
367 char *work_address_city; // 0x8046 | |
368 char *work_address_state; // 0x8047 | |
369 char *work_address_postalcode; // 0x8048 | |
370 char *work_address_country; // 0x8049 | |
371 char *work_address_postofficebox; // 0x804a | |
16 | 372 } pst_item_contact; |
373 | |
49 | 374 |
46 | 375 typedef struct pst_item_attach { |
49 | 376 char *filename1; |
377 char *filename2; | |
378 char *mimetype; | |
379 char *data; | |
380 size_t size; | |
381 uint64_t id2_val; | |
143
fdc58ad2c758
fix embedded rfc822 messages with attachments
Carl Byington <carl@five-ten-sg.com>
parents:
142
diff
changeset
|
382 uint64_t id_val; // calculated from id2_val during creation of record |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
383 pst_id2_ll *id2_head; // deep copy from child |
49 | 384 int32_t method; |
385 int32_t position; | |
386 int32_t sequence; | |
387 struct pst_item_attach *next; | |
16 | 388 } pst_item_attach; |
389 | |
49 | 390 |
46 | 391 typedef struct pst_item_extra_field { |
49 | 392 char *field_name; |
393 char *value; | |
394 struct pst_item_extra_field *next; | |
16 | 395 } pst_item_extra_field; |
396 | |
49 | 397 |
46 | 398 typedef struct pst_item_journal { |
49 | 399 FILETIME *end; |
400 FILETIME *start; | |
401 char *type; | |
16 | 402 } pst_item_journal; |
403 | |
49 | 404 |
46 | 405 typedef struct pst_item_appointment { |
49 | 406 FILETIME *end; |
50 | 407 char *location; |
408 int alarm; // 1 = true, 0 = false | |
49 | 409 FILETIME *reminder; |
50 | 410 int32_t alarm_minutes; |
411 char *alarm_filename; | |
49 | 412 FILETIME *start; |
50 | 413 char *timezonestring; |
414 int32_t showas; | |
415 int32_t label; | |
416 int all_day; // 1 = true, 0 = false | |
417 char *recurrence; | |
418 int32_t recurrence_type; | |
419 FILETIME *recurrence_start; | |
420 FILETIME *recurrence_end; | |
16 | 421 } pst_item_appointment; |
422 | |
49 | 423 |
46 | 424 typedef struct pst_item { |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
425 struct pst_item_email *email; // data referring to email |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
426 struct pst_item_folder *folder; // data referring to folder |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
427 struct pst_item_contact *contact; // data referring to contact |
49 | 428 struct pst_item_attach *attach; // linked list of attachments |
429 struct pst_item_message_store *message_store; // data referring to the message store | |
430 struct pst_item_extra_field *extra_fields; // linked list of extra headers and such | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
431 struct pst_item_journal *journal; // data referring to a journal entry |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
432 struct pst_item_appointment *appointment; // data referring to a calendar entry |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
433 int type; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
434 char *ascii_type; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
435 char *file_as; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
436 char *comment; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
437 char *body_charset; // null if not specified |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
438 int32_t internet_cpid; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
439 int32_t message_codepage; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
440 int32_t message_size; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
441 char *outlook_version; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
442 char *record_key; // probably 16 bytes long. |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
443 size_t record_key_size; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
444 int response_requested; // 1 = true, 0 = false |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
445 FILETIME *create_date; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
446 FILETIME *modify_date; |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
447 int private_member; // 1 = true, 0 = false |
16 | 448 } pst_item; |
449 | |
49 | 450 |
46 | 451 typedef struct pst_x_attrib_ll { |
49 | 452 uint32_t type; |
453 uint32_t mytype; | |
454 uint32_t map; | |
455 void *data; | |
456 struct pst_x_attrib_ll *next; | |
16 | 457 } pst_x_attrib_ll; |
458 | |
49 | 459 |
52 | 460 typedef struct pst_block_recorder { |
461 struct pst_block_recorder *next; | |
125
23a36ac0514d
recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents:
123
diff
changeset
|
462 int64_t offset; |
52 | 463 size_t size; |
464 int readcount; | |
465 } pst_block_recorder; | |
466 | |
467 | |
46 | 468 typedef struct pst_file { |
49 | 469 pst_index_ll *i_head, *i_tail; |
52 | 470 pst_desc_ll *d_head, *d_tail; |
49 | 471 pst_x_attrib_ll *x_head; |
52 | 472 pst_block_recorder *block_head; |
46 | 473 |
142
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
474 int do_read64; // 0 is 32-bit pst file, pre Outlook 2003; |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
475 // 1 is 64-bit pst file, Outlook 2003 and later |
49 | 476 uint64_t index1; |
477 uint64_t index1_back; | |
478 uint64_t index2; | |
479 uint64_t index2_back; | |
142
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
480 FILE * fp; // file pointer to opened PST file |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
481 uint64_t size; // pst file size |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
482 unsigned char encryption; // pst encryption setting |
2189a6b8134e
improve character set handling - don't try to convert utf-8 to single byte for fields that were not originally unicode.
Carl Byington <carl@five-ten-sg.com>
parents:
132
diff
changeset
|
483 unsigned char ind_type; // pst index type |
16 | 484 } pst_file; |
485 | |
49 | 486 |
46 | 487 typedef struct pst_block_offset { |
49 | 488 int16_t from; |
489 int16_t to; | |
16 | 490 } pst_block_offset; |
491 | |
49 | 492 |
46 | 493 typedef struct pst_block_offset_pointer { |
52 | 494 char *from; |
495 char *to; | |
496 int needfree; | |
35 | 497 } pst_block_offset_pointer; |
498 | |
49 | 499 |
500 typedef struct pst_num_item { | |
52 | 501 uint32_t id; // not an id1 or id2, this is actually some sort of type code |
502 char *data; | |
503 uint32_t type; | |
504 size_t size; | |
505 char *extra; | |
49 | 506 } pst_num_item; |
507 | |
16 | 508 |
46 | 509 typedef struct pst_num_array { |
49 | 510 int32_t count_item; |
511 int32_t orig_count; | |
512 int32_t count_array; | |
513 struct pst_num_item ** items; | |
514 struct pst_num_array *next; | |
16 | 515 } pst_num_array; |
516 | |
49 | 517 |
518 typedef struct pst_holder { | |
94
997cf1373f9e
fix base64 encoding that could create long lines
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
519 char **buf; |
997cf1373f9e
fix base64 encoding that could create long lines
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
520 FILE *fp; |
997cf1373f9e
fix base64 encoding that could create long lines
Carl Byington <carl@five-ten-sg.com>
parents:
90
diff
changeset
|
521 int base64; |
49 | 522 } pst_holder; |
523 | |
524 | |
525 typedef struct pst_subblock { | |
52 | 526 char *buf; |
527 size_t read_size; | |
528 size_t i_offset; | |
49 | 529 } pst_subblock; |
530 | |
531 | |
532 typedef struct pst_subblocks { | |
533 size_t subblock_count; | |
534 pst_subblock *subs; | |
535 } pst_subblocks; | |
536 | |
16 | 537 |
538 // prototypes | |
59
7d5c637aaafb
General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents:
52
diff
changeset
|
539 int pst_open(pst_file *pf, char *name); |
46 | 540 int pst_close(pst_file *pf); |
541 pst_desc_ll * pst_getTopOfFolders(pst_file *pf, pst_item *root); | |
52 | 542 size_t pst_attach_to_mem(pst_file *pf, pst_item_attach *attach, char **b); |
46 | 543 size_t pst_attach_to_file(pst_file *pf, pst_item_attach *attach, FILE* fp); |
544 size_t pst_attach_to_file_base64(pst_file *pf, pst_item_attach *attach, FILE* fp); | |
545 int pst_load_index (pst_file *pf); | |
546 pst_desc_ll* pst_getNextDptr(pst_desc_ll* d); | |
547 int pst_load_extended_attributes(pst_file *pf); | |
16 | 548 |
125
23a36ac0514d
recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents:
123
diff
changeset
|
549 int pst_build_id_ptr(pst_file *pf, int64_t offset, int32_t depth, uint64_t linku1, uint64_t start_val, uint64_t end_val); |
23a36ac0514d
recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents:
123
diff
changeset
|
550 int pst_build_desc_ptr(pst_file *pf, int64_t offset, int32_t depth, uint64_t linku1, uint64_t start_val, uint64_t end_val); |
46 | 551 pst_item* pst_getItem(pst_file *pf, pst_desc_ll *d_ptr); |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
552 pst_item* pst_parse_item (pst_file *pf, pst_desc_ll *d_ptr, pst_id2_ll *m_head); |
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
553 pst_num_array* pst_parse_block(pst_file *pf, uint64_t block_id, pst_id2_ll *i2_head, pst_num_array *na_head); |
46 | 554 int pst_process(pst_num_array *list, pst_item *item, pst_item_attach *attach); |
555 void pst_free_list(pst_num_array *list); | |
556 void pst_freeItem(pst_item *item); | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
557 void pst_free_id2(pst_id2_ll * head); |
46 | 558 void pst_free_id (pst_index_ll *head); |
559 void pst_free_desc (pst_desc_ll *head); | |
560 void pst_free_xattrib(pst_x_attrib_ll *x); | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
561 int pst_getBlockOffsetPointer(pst_file *pf, pst_id2_ll *i2_head, pst_subblocks *subblocks, uint32_t offset, pst_block_offset_pointer *p); |
52 | 562 int pst_getBlockOffset(char *buf, size_t read_size, uint32_t i_offset, uint32_t offset, pst_block_offset *p); |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
563 pst_id2_ll* pst_build_id2(pst_file *pf, pst_index_ll* list); |
46 | 564 pst_index_ll* pst_getID(pst_file* pf, uint64_t id); |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
565 pst_id2_ll* pst_getID2(pst_id2_ll * ptr, uint64_t id); |
46 | 566 pst_desc_ll* pst_getDptr(pst_file *pf, uint64_t id); |
125
23a36ac0514d
recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents:
123
diff
changeset
|
567 size_t pst_read_block_size(pst_file *pf, int64_t offset, size_t size, char **buf); |
79
56fa05fd5271
Patch from Robert Simpson for encryption type 2.
Carl Byington <carl@five-ten-sg.com>
parents:
75
diff
changeset
|
568 int pst_decrypt(uint64_t id, char *buf, size_t size, unsigned char type); |
46 | 569 uint64_t pst_getIntAt(pst_file *pf, char *buf); |
125
23a36ac0514d
recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents:
123
diff
changeset
|
570 uint64_t pst_getIntAtPos(pst_file *pf, int64_t pos); |
23a36ac0514d
recover dropped pragma pack line, use int64_t rather than off_t to avoid forcing users of the shared library to enable large file support.
Carl Byington <carl@five-ten-sg.com>
parents:
123
diff
changeset
|
571 size_t pst_getAtPos(pst_file *pf, int64_t pos, void* buf, size_t size); |
52 | 572 size_t pst_ff_getIDblock_dec(pst_file *pf, uint64_t id, char **b); |
573 size_t pst_ff_getIDblock(pst_file *pf, uint64_t id, char** b); | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
574 size_t pst_ff_getID2block(pst_file *pf, uint64_t id2, pst_id2_ll *id2_head, char** buf); |
49 | 575 size_t pst_ff_getID2data(pst_file *pf, pst_index_ll *ptr, pst_holder *h); |
576 size_t pst_ff_compile_ID(pst_file *pf, uint64_t id, pst_holder *h, size_t size); | |
16 | 577 |
46 | 578 int pst_strincmp(char *a, char *b, size_t x); |
579 int pst_stricmp(char *a, char *b); | |
580 size_t pst_fwrite(const void*ptr, size_t size, size_t nmemb, FILE*stream); | |
47 | 581 char * pst_wide_to_single(char *wt, size_t size); |
43 | 582 |
46 | 583 char * pst_rfc2426_escape(char *str); |
584 int pst_chr_count(char *str, char x); | |
585 char * pst_rfc2425_datetime_format(FILETIME *ft); | |
586 char * pst_rfc2445_datetime_format(FILETIME *ft); | |
43 | 587 |
51 | 588 void pst_printDptr(pst_file *pf, pst_desc_ll *ptr); |
589 void pst_printIDptr(pst_file* pf); | |
150
06aa84023b48
rename some structure fields to reflect our better understanding of the pst format
Carl Byington <carl@five-ten-sg.com>
parents:
143
diff
changeset
|
590 void pst_printID2ptr(pst_id2_ll *ptr); |
16 | 591 |
130
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
592 |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
593 // switch from maximal packing back to default packing |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
594 // undo the packing from the beginning of this file |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
595 #ifdef _MSC_VER |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
596 #pragma pack(pop) |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
597 #endif |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
598 #if defined(__GNUC__) || defined (__SUNPRO_C) || defined(__SUNPRO_CC) |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
599 #pragma pack() |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
600 #endif |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
601 |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
602 |
e35fd42bac05
more cleanup of include files
Carl Byington <carl@five-ten-sg.com>
parents:
128
diff
changeset
|
603 |
16 | 604 #endif // defined LIBPST_H |