comparison src/libpst.h @ 271:eafaf362779e

fixup doxygen errors
author Carl Byington <carl@five-ten-sg.com>
date Thu, 21 Apr 2011 10:16:29 -0700
parents c947b8812120
children e0e5844d91b3
comparison
equal deleted inserted replaced
270:6c73cd336d5d 271:eafaf362779e
1069 */ 1069 */
1070 const char* pst_default_charset(pst_item *item, int buflen, char* result); 1070 const char* pst_default_charset(pst_item *item, int buflen, char* result);
1071 1071
1072 1072
1073 /** Convert str to rfc2231 encoding of str 1073 /** Convert str to rfc2231 encoding of str
1074 * @param item pointer to the containing mapi item
1075 * @param str pointer to the mapi string of interest 1074 * @param str pointer to the mapi string of interest
1076 */ 1075 */
1077 void pst_rfc2231(pst_string *str); 1076 void pst_rfc2231(pst_string *str);
1078 1077
1079 1078
1080 /** Convert str to rfc2047 encoding of str, possibly enclosed in quotes if it contains spaces 1079 /** Convert str to rfc2047 encoding of str, possibly enclosed in quotes if it contains spaces
1081 * @param item pointer to the containing mapi item 1080 * @param item pointer to the containing mapi item
1082 * @param str pointer to the mapi string of interest 1081 * @param str pointer to the mapi string of interest
1082 * @param needs_quote true if strings containing spaces should be wrapped in quotes
1083 */ 1083 */
1084 void pst_rfc2047(pst_item *item, pst_string *str, int needs_quote); 1084 void pst_rfc2047(pst_item *item, pst_string *str, int needs_quote);
1085 1085
1086 1086
1087 /** Convert str to utf8 if possible; null strings are preserved. 1087 /** Convert str to utf8 if possible; null strings are preserved.