comparison src/libpst.h @ 193:cf3df962f1e5 stable-0-6-37

prep for fedora build
author Carl Byington <carl@five-ten-sg.com>
date Fri, 17 Apr 2009 12:51:59 -0700
parents 4b498fd68464
children 320cfcba8058
comparison
equal deleted inserted replaced
192:774b2e77eb50 193:cf3df962f1e5
245 int32_t rtf_body_crc; 245 int32_t rtf_body_crc;
246 /** mapi element 0x1008 PR_RTF_SYNC_BODY_TAG, 246 /** mapi element 0x1008 PR_RTF_SYNC_BODY_TAG,
247 * the first couple of lines of RTF body so that after modification, then beginning can 247 * the first couple of lines of RTF body so that after modification, then beginning can
248 * once again be found. */ 248 * once again be found. */
249 pst_string rtf_body_tag; 249 pst_string rtf_body_tag;
250 /** mapi element 0x1009 PR_RTF_COMPRESSED */ 250 /** mapi element 0x1009 PR_RTF_COMPRESSED,
251 * the compressed rtf body data.
252 * Use pst_lzfu_decompress() to retrieve the actual rtf body data. */
251 pst_binary rtf_compressed; 253 pst_binary rtf_compressed;
252 /** mapi element 0x0e1f PR_RTF_IN_SYNC, 254 /** mapi element 0x0e1f PR_RTF_IN_SYNC,
253 * True means that the rtf version is same as text body. 255 * True means that the rtf version is same as text body.
254 * False means rtf version is more up-to-date than text body. 256 * False means rtf version is more up-to-date than text body.
255 * If this value doesn't exist, text body is more up-to-date than rtf and 257 * If this value doesn't exist, text body is more up-to-date than rtf and
996 * @return time in rfc2445 format 998 * @return time in rfc2445 format
997 */ 999 */
998 char * pst_rfc2445_datetime_format(FILETIME *ft); 1000 char * pst_rfc2445_datetime_format(FILETIME *ft);
999 1001
1000 1002
1001 /** Convert a code page integer into a string suitable for iconv()
1002 * @param cp the code page integer used in the pst file
1003 * @return pointer to a static buffer holding the string representation of the
1004 * equivalent iconv character set
1005 */
1006 const char* pst_codepage(int cp);
1007
1008
1009 /** Get the default character set for this item. This is used to find 1003 /** Get the default character set for this item. This is used to find
1010 * the charset for pst_string elements that are not already in utf8 encoding. 1004 * the charset for pst_string elements that are not already in utf8 encoding.
1011 * @param item pointer to the mapi item of interest 1005 * @param item pointer to the mapi item of interest
1012 * @return default character set as a string useable by iconv() 1006 * @return default character set as a string useable by iconv()
1013 */ 1007 */