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
|
43
|
13 #include <stdint.h>
|
|
14
|
16
|
15 #ifndef _MSC_VER
|
|
16
|
|
17 #ifndef FILETIME_DEFINED
|
|
18 #define FILETIME_DEFINED
|
|
19 //Win32 Filetime struct - copied from WINE
|
|
20 typedef struct {
|
43
|
21 uint32_t dwLowDateTime;
|
|
22 uint32_t dwHighDateTime;
|
16
|
23 } FILETIME;
|
|
24 #endif //ifndef FILETIME_DEFINED
|
|
25 #endif //ifndef _MSC_VER
|
|
26
|
|
27 // According to Jan Wolter, sys/param.h is the most portable source of endian
|
|
28 // information on UNIX systems. see http://www.unixpapa.com/incnote/byteorder.html
|
|
29 #ifdef _MSC_VER
|
|
30 #define BYTE_ORDER LITTLE_ENDIAN
|
|
31 #else
|
|
32 #include <sys/param.h>
|
|
33 #endif // defined _MSC_VER
|
|
34
|
|
35 #if BYTE_ORDER == BIG_ENDIAN
|
|
36 # define LE64_CPU(x) \
|
|
37 x = ((((x) & 0xff00000000000000) >> 56) | \
|
46
|
38 (((x) & 0x00ff000000000000) >> 40) | \
|
|
39 (((x) & 0x0000ff0000000000) >> 24) | \
|
|
40 (((x) & 0x000000ff00000000) >> 8 ) | \
|
|
41 (((x) & 0x00000000ff000000) << 8 ) | \
|
|
42 (((x) & 0x0000000000ff0000) << 24) | \
|
|
43 (((x) & 0x000000000000ff00) << 40) | \
|
|
44 (((x) & 0x00000000000000ff) << 56));
|
16
|
45 # define LE32_CPU(x) \
|
|
46 x = ((((x) & 0xff000000) >> 24) | \
|
46
|
47 (((x) & 0x00ff0000) >> 8 ) | \
|
|
48 (((x) & 0x0000ff00) << 8 ) | \
|
|
49 (((x) & 0x000000ff) << 24));
|
16
|
50 # define LE16_CPU(x) \
|
|
51 x = ((((x) & 0xff00) >> 8) | \
|
46
|
52 (((x) & 0x00ff) << 8));
|
16
|
53 #elif BYTE_ORDER == LITTLE_ENDIAN
|
|
54 # define LE64_CPU(x) {}
|
|
55 # define LE32_CPU(x) {}
|
|
56 # define LE16_CPU(x) {}
|
|
57 #else
|
|
58 # error "Byte order not supported by this library"
|
|
59 #endif // BYTE_ORDER
|
|
60
|
|
61
|
|
62 #ifdef _MSC_VER
|
|
63 #include "windows.h"
|
44
|
64 #define int32_t int
|
43
|
65 #define uint32_t unsigned int
|
44
|
66 #define int16_t short int
|
43
|
67 #define uint16_t unsigned short int
|
16
|
68 #endif // _MSC_VER
|
|
69
|
|
70 #define PST_TYPE_NOTE 1
|
|
71 #define PST_TYPE_APPOINTMENT 8
|
|
72 #define PST_TYPE_CONTACT 9
|
|
73 #define PST_TYPE_JOURNAL 10
|
|
74 #define PST_TYPE_STICKYNOTE 11
|
|
75 #define PST_TYPE_TASK 12
|
|
76 #define PST_TYPE_OTHER 13
|
|
77 #define PST_TYPE_REPORT 14
|
|
78
|
|
79 // defines whether decryption is done on this bit of data
|
|
80 #define PST_NO_ENC 0
|
|
81 #define PST_ENC 1
|
|
82
|
|
83 // defines types of possible encryption
|
|
84 #define PST_NO_ENCRYPT 0
|
|
85 #define PST_COMP_ENCRYPT 1
|
|
86 #define PST_ENCRYPT 2
|
|
87
|
|
88 // defines different types of mappings
|
46
|
89 #define PST_MAP_ATTRIB (uint32_t)1
|
|
90 #define PST_MAP_HEADER (uint32_t)2
|
16
|
91
|
|
92 // define my custom email attributes.
|
|
93 #define PST_ATTRIB_HEADER -1
|
|
94
|
|
95 // defines types of free/busy values for appointment->showas
|
|
96 #define PST_FREEBUSY_FREE 0
|
|
97 #define PST_FREEBUSY_TENTATIVE 1
|
|
98 #define PST_FREEBUSY_BUSY 2
|
|
99 #define PST_FREEBUSY_OUT_OF_OFFICE 3
|
|
100
|
|
101 // defines labels for appointment->label
|
46
|
102 #define PST_APP_LABEL_NONE 0 // None
|
16
|
103 #define PST_APP_LABEL_IMPORTANT 1 // Important
|
46
|
104 #define PST_APP_LABEL_BUSINESS 2 // Business
|
|
105 #define PST_APP_LABEL_PERSONAL 3 // Personal
|
|
106 #define PST_APP_LABEL_VACATION 4 // Vacation
|
16
|
107 #define PST_APP_LABEL_MUST_ATTEND 5 // Must Attend
|
|
108 #define PST_APP_LABEL_TRAVEL_REQ 6 // Travel Required
|
|
109 #define PST_APP_LABEL_NEEDS_PREP 7 // Needs Preparation
|
46
|
110 #define PST_APP_LABEL_BIRTHDAY 8 // Birthday
|
16
|
111 #define PST_APP_LABEL_ANNIVERSARY 9 // Anniversary
|
|
112 #define PST_APP_LABEL_PHONE_CALL 10// Phone Call
|
|
113
|
46
|
114 typedef struct pst_misc_6_struct {
|
16
|
115 int32_t i1;
|
|
116 int32_t i2;
|
|
117 int32_t i3;
|
|
118 int32_t i4;
|
|
119 int32_t i5;
|
|
120 int32_t i6;
|
|
121 } pst_misc_6;
|
|
122
|
46
|
123 typedef struct pst_entryid_struct {
|
16
|
124 int32_t u1;
|
|
125 char entryid[16];
|
43
|
126 uint32_t id;
|
16
|
127 } pst_entryid;
|
|
128
|
46
|
129 typedef struct pst_desc_struct32 {
|
43
|
130 uint32_t d_id;
|
|
131 uint32_t desc_id;
|
|
132 uint32_t list_id;
|
|
133 uint32_t parent_id;
|
|
134 } pst_desc32;
|
16
|
135
|
46
|
136 typedef struct pst_desc_structn {
|
43
|
137 uint64_t d_id;
|
|
138 uint64_t desc_id;
|
|
139 uint64_t list_id;
|
|
140 uint32_t parent_id; // not 64 bit ??
|
|
141 uint32_t u1; // padding
|
|
142 } pst_descn;
|
|
143
|
46
|
144 typedef struct pst_index_struct32 {
|
43
|
145 uint32_t id;
|
46
|
146 uint32_t offset;
|
43
|
147 uint16_t size;
|
|
148 int16_t u1;
|
|
149 } pst_index32;
|
|
150
|
46
|
151 typedef struct pst_index_struct {
|
43
|
152 uint64_t id;
|
46
|
153 uint64_t offset;
|
43
|
154 uint16_t size;
|
|
155 int16_t u0;
|
|
156 int32_t u1;
|
16
|
157 } pst_index;
|
|
158
|
46
|
159 typedef struct pst_index_tree32 {
|
43
|
160 uint32_t id;
|
46
|
161 uint32_t offset;
|
|
162 uint32_t size;
|
43
|
163 int32_t u1;
|
46
|
164 struct pst_index_tree * next;
|
43
|
165 } pst_index_ll32;
|
|
166
|
46
|
167 typedef struct pst_index_tree {
|
43
|
168 uint64_t id;
|
46
|
169 uint64_t offset;
|
|
170 uint64_t size;
|
43
|
171 int64_t u1;
|
46
|
172 struct pst_index_tree * next;
|
16
|
173 } pst_index_ll;
|
|
174
|
46
|
175 typedef struct pst_index2_tree {
|
|
176 uint64_t id2;
|
16
|
177 pst_index_ll *id;
|
46
|
178 struct pst_index2_tree * next;
|
16
|
179 } pst_index2_ll;
|
|
180
|
46
|
181 typedef struct pst_desc_tree {
|
|
182 uint64_t id;
|
16
|
183 pst_index_ll * list_index;
|
|
184 pst_index_ll * desc;
|
|
185 int32_t no_child;
|
46
|
186 struct pst_desc_tree * prev;
|
|
187 struct pst_desc_tree * next;
|
|
188 struct pst_desc_tree * parent;
|
|
189 struct pst_desc_tree * child;
|
|
190 struct pst_desc_tree * child_tail;
|
16
|
191 } pst_desc_ll;
|
|
192
|
46
|
193 typedef struct pst_item_email_subject {
|
47
|
194 int off1;
|
|
195 int off2;
|
43
|
196 char *subj;
|
16
|
197 } pst_item_email_subject;
|
|
198
|
46
|
199 typedef struct pst_item_email {
|
16
|
200 FILETIME *arrival_date;
|
47
|
201 int autoforward; // 1 = true, 0 = not set, -1 = false
|
46
|
202 char *body;
|
|
203 char *cc_address;
|
|
204 char *common_name;
|
|
205 int32_t conv_index;
|
47
|
206 int conversion_prohib; // 1 = true, 0 = false
|
|
207 int delete_after_submit; // 1 = true, 0 = false
|
|
208 int delivery_report; // 1 = true, 0 = false
|
46
|
209 char *encrypted_body;
|
|
210 int32_t encrypted_body_size;
|
|
211 char *encrypted_htmlbody;
|
|
212 int32_t encrypted_htmlbody_size;
|
|
213 int32_t flag;
|
|
214 char *header;
|
|
215 char *htmlbody;
|
|
216 int32_t importance;
|
|
217 char *in_reply_to;
|
47
|
218 int message_cc_me; // 1 = true, 0 = false
|
|
219 int message_recip_me; // 1 = true, 0 = false
|
|
220 int message_to_me; // 1 = true, 0 = false
|
46
|
221 char *messageid;
|
|
222 int32_t orig_sensitivity;
|
|
223 char *outlook_recipient;
|
|
224 char *outlook_recipient2;
|
|
225 char *outlook_sender;
|
|
226 char *outlook_sender_name;
|
|
227 char *outlook_sender2;
|
|
228 int32_t priority;
|
|
229 char *proc_subject;
|
47
|
230 int read_receipt; // 1 = true, 0 = false
|
46
|
231 char *recip_access;
|
|
232 char *recip_address;
|
|
233 char *recip2_access;
|
|
234 char *recip2_address;
|
47
|
235 int reply_requested; // 1 = true, 0 = false
|
46
|
236 char *reply_to;
|
|
237 char *return_path_address;
|
|
238 int32_t rtf_body_char_count;
|
|
239 int32_t rtf_body_crc;
|
|
240 char *rtf_body_tag;
|
|
241 char *rtf_compressed;
|
43
|
242 uint32_t rtf_compressed_size;
|
47
|
243 int rtf_in_sync; // 1 = true, 0 = doesn't exist, -1 = false
|
46
|
244 int32_t rtf_ws_prefix_count;
|
|
245 int32_t rtf_ws_trailing_count;
|
|
246 char *sender_access;
|
|
247 char *sender_address;
|
|
248 char *sender2_access;
|
|
249 char *sender2_address;
|
|
250 int32_t sensitivity;
|
16
|
251 FILETIME *sent_date;
|
|
252 pst_entryid *sentmail_folder;
|
46
|
253 char *sentto_address;
|
16
|
254 pst_item_email_subject *subject;
|
|
255 } pst_item_email;
|
|
256
|
46
|
257 typedef struct pst_item_folder {
|
16
|
258 int32_t email_count;
|
|
259 int32_t unseen_email_count;
|
|
260 int32_t assoc_count;
|
47
|
261 int subfolder; // 1 = true, 0 = false
|
16
|
262 } pst_item_folder;
|
|
263
|
46
|
264 typedef struct pst_item_message_store {
|
16
|
265 pst_entryid *deleted_items_folder;
|
|
266 pst_entryid *search_root_folder;
|
|
267 pst_entryid *top_of_personal_folder;
|
|
268 pst_entryid *top_of_folder;
|
|
269 int32_t valid_mask; // what folders the message store contains
|
|
270 int32_t pwd_chksum;
|
|
271 } pst_item_message_store;
|
|
272
|
46
|
273 typedef struct pst_item_contact {
|
16
|
274 char *access_method;
|
|
275 char *account_name;
|
|
276 char *address1;
|
|
277 char *address1a;
|
|
278 char *address1_desc;
|
|
279 char *address1_transport;
|
|
280 char *address2;
|
|
281 char *address2a;
|
|
282 char *address2_desc;
|
|
283 char *address2_transport;
|
|
284 char *address3;
|
|
285 char *address3a;
|
|
286 char *address3_desc;
|
|
287 char *address3_transport;
|
|
288 char *assistant_name;
|
|
289 char *assistant_phone;
|
|
290 char *billing_information;
|
|
291 FILETIME *birthday;
|
|
292 char *business_address;
|
|
293 char *business_city;
|
|
294 char *business_country;
|
|
295 char *business_fax;
|
|
296 char *business_homepage;
|
|
297 char *business_phone;
|
|
298 char *business_phone2;
|
|
299 char *business_po_box;
|
|
300 char *business_postal_code;
|
|
301 char *business_state;
|
|
302 char *business_street;
|
|
303 char *callback_phone;
|
|
304 char *car_phone;
|
|
305 char *company_main_phone;
|
|
306 char *company_name;
|
|
307 char *computer_name;
|
|
308 char *customer_id;
|
|
309 char *def_postal_address;
|
|
310 char *department;
|
|
311 char *display_name_prefix;
|
|
312 char *first_name;
|
|
313 char *followup;
|
|
314 char *free_busy_address;
|
|
315 char *ftp_site;
|
|
316 char *fullname;
|
|
317 int32_t gender;
|
|
318 char *gov_id;
|
|
319 char *hobbies;
|
|
320 char *home_address;
|
|
321 char *home_city;
|
|
322 char *home_country;
|
|
323 char *home_fax;
|
|
324 char *home_phone;
|
|
325 char *home_phone2;
|
|
326 char *home_po_box;
|
|
327 char *home_postal_code;
|
|
328 char *home_state;
|
|
329 char *home_street;
|
|
330 char *initials;
|
|
331 char *isdn_phone;
|
|
332 char *job_title;
|
|
333 char *keyword;
|
|
334 char *language;
|
|
335 char *location;
|
47
|
336 int mail_permission; // 1 = true, 0 = false
|
16
|
337 char *manager_name;
|
|
338 char *middle_name;
|
|
339 char *mileage;
|
|
340 char *mobile_phone;
|
|
341 char *nickname;
|
|
342 char *office_loc;
|
|
343 char *org_id;
|
|
344 char *other_address;
|
|
345 char *other_city;
|
|
346 char *other_country;
|
|
347 char *other_phone;
|
|
348 char *other_po_box;
|
|
349 char *other_postal_code;
|
|
350 char *other_state;
|
|
351 char *other_street;
|
|
352 char *pager_phone;
|
|
353 char *personal_homepage;
|
|
354 char *pref_name;
|
|
355 char *primary_fax;
|
|
356 char *primary_phone;
|
|
357 char *profession;
|
|
358 char *radio_phone;
|
47
|
359 int rich_text; // 1 = true, 0 = false
|
16
|
360 char *spouse_name;
|
|
361 char *suffix;
|
|
362 char *surname;
|
|
363 char *telex;
|
|
364 char *transmittable_display_name;
|
|
365 char *ttytdd_phone;
|
|
366 FILETIME *wedding_anniversary;
|
|
367 } pst_item_contact;
|
|
368
|
46
|
369 typedef struct pst_item_attach {
|
16
|
370 char *filename1;
|
|
371 char *filename2;
|
|
372 char *mimetype;
|
|
373 char *data;
|
36
|
374 size_t size;
|
46
|
375 uint64_t id2_val;
|
|
376 uint64_t id_val; // calculated from id2_val during creation of record
|
16
|
377 int32_t method;
|
|
378 int32_t position;
|
|
379 int32_t sequence;
|
46
|
380 struct pst_item_attach *next;
|
16
|
381 } pst_item_attach;
|
|
382
|
46
|
383 typedef struct pst_item_extra_field {
|
16
|
384 char *field_name;
|
|
385 char *value;
|
46
|
386 struct pst_item_extra_field *next;
|
16
|
387 } pst_item_extra_field;
|
|
388
|
46
|
389 typedef struct pst_item_journal {
|
16
|
390 FILETIME *end;
|
|
391 FILETIME *start;
|
|
392 char *type;
|
|
393 } pst_item_journal;
|
|
394
|
46
|
395 typedef struct pst_item_appointment {
|
16
|
396 FILETIME *end;
|
|
397 char *location;
|
|
398 FILETIME *reminder;
|
|
399 FILETIME *start;
|
47
|
400 char *timezonestring;
|
16
|
401 int32_t showas;
|
|
402 int32_t label;
|
47
|
403 int all_day; // 1 = true, 0 = false
|
16
|
404 } pst_item_appointment;
|
|
405
|
46
|
406 typedef struct pst_item {
|
|
407 struct pst_item_email *email; // data reffering to email
|
|
408 struct pst_item_folder *folder; // data reffering to folder
|
|
409 struct pst_item_contact *contact; // data reffering to contact
|
|
410 struct pst_item_attach *attach; // linked list of attachments
|
|
411 struct pst_item_message_store *message_store; // data referring to the message store
|
|
412 struct pst_item_extra_field *extra_fields; // linked list of extra headers and such
|
|
413 struct pst_item_journal *journal; // data reffering to a journal entry
|
|
414 struct pst_item_appointment *appointment; // data reffering to a calendar entry
|
47
|
415 int type;
|
43
|
416 char *ascii_type;
|
|
417 char *file_as;
|
|
418 char *comment;
|
|
419 int32_t message_size;
|
|
420 char *outlook_version;
|
|
421 char *record_key; // probably 16 bytes long.
|
|
422 size_t record_key_size;
|
47
|
423 int response_requested; // 1 = true, 0 = false
|
16
|
424 FILETIME *create_date;
|
|
425 FILETIME *modify_date;
|
47
|
426 int private_member; // 1 = true, 0 = false
|
16
|
427 } pst_item;
|
|
428
|
46
|
429 typedef struct pst_x_attrib_ll {
|
|
430 uint32_t type;
|
|
431 uint32_t mytype;
|
|
432 uint32_t map;
|
16
|
433 void *data;
|
46
|
434 struct pst_x_attrib_ll *next;
|
16
|
435 } pst_x_attrib_ll;
|
|
436
|
46
|
437 typedef struct pst_file {
|
16
|
438 pst_index_ll *i_head, *i_tail;
|
|
439 pst_index2_ll *i2_head;
|
|
440 pst_desc_ll *d_head, *d_tail;
|
|
441 pst_x_attrib_ll *x_head;
|
46
|
442
|
|
443 //set this to 0 to read 32-bit pst files (pre Outlook 2003)
|
|
444 //set this to 1 to read 64-bit pst files (Outlook 2003 and later)
|
|
445 int do_read64;
|
|
446
|
|
447 uint64_t index1;
|
|
448 uint64_t index1_back;
|
|
449 uint64_t index2;
|
|
450 uint64_t index2_back;
|
|
451 FILE * fp; // file pointer to opened PST file
|
|
452 uint64_t size; // pst file size
|
31
|
453 unsigned char encryption; // pst encryption setting
|
46
|
454 unsigned char ind_type; // pst index type
|
16
|
455 } pst_file;
|
|
456
|
46
|
457 typedef struct pst_block_offset {
|
16
|
458 int16_t from;
|
|
459 int16_t to;
|
|
460 } pst_block_offset;
|
|
461
|
46
|
462 typedef struct pst_block_offset_pointer {
|
35
|
463 unsigned char *from;
|
|
464 unsigned char *to;
|
46
|
465 int needfree;
|
35
|
466 } pst_block_offset_pointer;
|
|
467
|
46
|
468 struct pst_num_item {
|
43
|
469 uint32_t id;
|
16
|
470 unsigned char *data;
|
47
|
471 uint32_t type;
|
46
|
472 size_t size;
|
|
473 char *extra;
|
16
|
474 };
|
|
475
|
46
|
476 typedef struct pst_num_array {
|
16
|
477 int32_t count_item;
|
39
|
478 int32_t orig_count;
|
16
|
479 int32_t count_array;
|
46
|
480 struct pst_num_item ** items;
|
|
481 struct pst_num_array *next;
|
16
|
482 } pst_num_array;
|
|
483
|
|
484 struct holder {
|
|
485 unsigned char **buf;
|
46
|
486 FILE * fp;
|
|
487 int base64;
|
|
488 char base64_extra_chars[3];
|
|
489 uint32_t base64_extra;
|
16
|
490 };
|
|
491
|
|
492 // prototypes
|
46
|
493 int pst_open(pst_file *pf, char *name, char *mode);
|
|
494 int pst_close(pst_file *pf);
|
|
495 pst_desc_ll * pst_getTopOfFolders(pst_file *pf, pst_item *root);
|
|
496 size_t pst_attach_to_mem(pst_file *pf, pst_item_attach *attach, unsigned char **b);
|
|
497 size_t pst_attach_to_file(pst_file *pf, pst_item_attach *attach, FILE* fp);
|
|
498 size_t pst_attach_to_file_base64(pst_file *pf, pst_item_attach *attach, FILE* fp);
|
|
499 int pst_load_index (pst_file *pf);
|
|
500 pst_desc_ll* pst_getNextDptr(pst_desc_ll* d);
|
|
501 int pst_load_extended_attributes(pst_file *pf);
|
16
|
502
|
46
|
503 int pst_build_id_ptr(pst_file *pf, off_t offset, int32_t depth, uint64_t linku1, uint64_t start_val, uint64_t end_val);
|
48
|
504 int pst_build_desc_ptr(pst_file *pf, off_t offset, int32_t depth, uint64_t linku1, uint64_t *high_id, uint64_t start_val, uint64_t end_val);
|
46
|
505 pst_item* pst_getItem(pst_file *pf, pst_desc_ll *d_ptr);
|
|
506 pst_item* pst_parse_item (pst_file *pf, pst_desc_ll *d_ptr);
|
48
|
507 pst_num_array* pst_parse_block(pst_file *pf, uint64_t block_id, pst_index2_ll *i2_head, pst_num_array *na_head);
|
46
|
508 int pst_process(pst_num_array *list, pst_item *item, pst_item_attach *attach);
|
|
509 void pst_free_list(pst_num_array *list);
|
|
510 void pst_freeItem(pst_item *item);
|
|
511 void pst_free_id2(pst_index2_ll * head);
|
|
512 void pst_free_id (pst_index_ll *head);
|
|
513 void pst_free_desc (pst_desc_ll *head);
|
|
514 void pst_free_xattrib(pst_x_attrib_ll *x);
|
|
515 int pst_getBlockOffsetPointer(pst_file *pf, pst_index2_ll *i2_head, unsigned char *buf, size_t read_size, uint32_t i_offset, uint32_t offset, pst_block_offset_pointer *p);
|
|
516 int pst_getBlockOffset(unsigned char *buf, size_t read_size, uint32_t i_offset, uint32_t offset, pst_block_offset *p);
|
|
517 pst_index2_ll* pst_build_id2(pst_file *pf, pst_index_ll* list, pst_index2_ll* head_ptr);
|
|
518 pst_index_ll* pst_getID(pst_file* pf, uint64_t id);
|
|
519 pst_index_ll* pst_getID2(pst_index2_ll * ptr, uint64_t id);
|
|
520 pst_desc_ll* pst_getDptr(pst_file *pf, uint64_t id);
|
|
521 size_t pst_read_block_size(pst_file *pf, off_t offset, size_t size, char **buf, int32_t do_enc, unsigned char is_index);
|
|
522 int pst_decrypt(unsigned char *buf, size_t size, unsigned char type);
|
|
523 uint64_t pst_getIntAt(pst_file *pf, char *buf);
|
|
524 uint64_t pst_getIntAtPos(pst_file *pf, off_t pos);
|
|
525 int pst_getAtPos(FILE *fp, off_t pos, void* buf, size_t size);
|
|
526 int pst_get (FILE *fp, void *buf, size_t size);
|
|
527 size_t pst_ff_getIDblock_dec(pst_file *pf, uint64_t id, unsigned char **b);
|
|
528 size_t pst_ff_getIDblock(pst_file *pf, uint64_t id, unsigned char** b);
|
|
529 size_t pst_ff_getID2block(pst_file *pf, uint64_t id2, pst_index2_ll *id2_head, unsigned char** buf);
|
|
530 size_t pst_ff_getID2data(pst_file *pf, pst_index_ll *ptr, struct holder *h);
|
|
531 size_t pst_ff_compile_ID(pst_file *pf, uint64_t id, struct holder *h, size_t size);
|
16
|
532
|
46
|
533 int pst_strincmp(char *a, char *b, size_t x);
|
|
534 int pst_stricmp(char *a, char *b);
|
|
535 size_t pst_fwrite(const void*ptr, size_t size, size_t nmemb, FILE*stream);
|
47
|
536 char * pst_wide_to_single(char *wt, size_t size);
|
43
|
537
|
46
|
538 char * pst_rfc2426_escape(char *str);
|
|
539 int pst_chr_count(char *str, char x);
|
|
540 char * pst_rfc2425_datetime_format(FILETIME *ft);
|
|
541 char * pst_rfc2445_datetime_format(FILETIME *ft);
|
43
|
542
|
46
|
543 int32_t pst_printDptr(pst_file *pf);
|
|
544 int32_t pst_printIDptr(pst_file* pf);
|
|
545 int32_t pst_printID2ptr(pst_index2_ll *ptr);
|
16
|
546
|
|
547 #endif // defined LIBPST_H
|