comparison src/libpst.h @ 233:1d50ff3c5091

better rfc822 embedded message decoding
author Carl Byington <carl@five-ten-sg.com>
date Thu, 10 Sep 2009 22:49:24 -0700
parents 7fcff97ca5a9
children c947b8812120 97c53c6868ab
comparison
equal deleted inserted replaced
232:f8dc1b7201ad 233:1d50ff3c5091
30 #define PST_TYPE_JOURNAL 10 30 #define PST_TYPE_JOURNAL 10
31 #define PST_TYPE_STICKYNOTE 11 31 #define PST_TYPE_STICKYNOTE 11
32 #define PST_TYPE_TASK 12 32 #define PST_TYPE_TASK 12
33 #define PST_TYPE_OTHER 13 33 #define PST_TYPE_OTHER 13
34 #define PST_TYPE_REPORT 14 34 #define PST_TYPE_REPORT 14
35
36 35
37 // defines types of possible encryption 36 // defines types of possible encryption
38 #define PST_NO_ENCRYPT 0 37 #define PST_NO_ENCRYPT 0
39 #define PST_COMP_ENCRYPT 1 38 #define PST_COMP_ENCRYPT 1
40 #define PST_ENCRYPT 2 39 #define PST_ENCRYPT 2
69 #define PST_APP_RECUR_NONE 0 68 #define PST_APP_RECUR_NONE 0
70 #define PST_APP_RECUR_DAILY 1 69 #define PST_APP_RECUR_DAILY 1
71 #define PST_APP_RECUR_WEEKLY 2 70 #define PST_APP_RECUR_WEEKLY 2
72 #define PST_APP_RECUR_MONTHLY 3 71 #define PST_APP_RECUR_MONTHLY 3
73 #define PST_APP_RECUR_YEARLY 4 72 #define PST_APP_RECUR_YEARLY 4
73
74 // define attachment types
75 #define PST_ATTACH_NONE 0
76 #define PST_ATTACH_BY_VALUE 1
77 #define PST_ATTACH_BY_REF 2
78 #define PST_ATTACH_BY_REF_RESOLV 3
79 #define PST_ATTACH_BY_REF_ONLY 4
80 #define PST_ATTACH_EMBEDDED 5
81 #define PST_ATTACH_OLE 6
74 82
75 83
76 typedef struct pst_entryid { 84 typedef struct pst_entryid {
77 int32_t u1; 85 int32_t u1;
78 char entryid[16]; 86 char entryid[16];