comparison src/mime.h @ 11035:11e465b55fe6

[gaim-migrate @ 12922] A host of doxygen tweaks. There's a few more left, not sure how to fix them at the moment... committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Tue, 28 Jun 2005 20:36:20 +0000
parents 8ab19bf9c3bc
children 2507d20c3d0b
comparison
equal deleted inserted replaced
11034:ba506d2e6a8e 11035:11e465b55fe6
154 const char *field); 154 const char *field);
155 155
156 156
157 /** Set or replace the value of a specific field in the header of a 157 /** Set or replace the value of a specific field in the header of a
158 document 158 document
159 @param doc the MIME document 159 @param part the part of the MIME document
160 @param field case-insensitive field name 160 @param field case-insensitive field name
161 @param value value to associate with the indicated header field, 161 @param value value to associate with the indicated header field,
162 of NULL to remove the field 162 of NULL to remove the field
163 */ 163 */
164 void gaim_mime_part_set_field(GaimMimePart *part, 164 void gaim_mime_part_set_field(GaimMimePart *part,
177 decode it according to the content-transfer-encoding field. If the 177 decode it according to the content-transfer-encoding field. If the
178 specified encoding method is not supported, this function will 178 specified encoding method is not supported, this function will
179 return NULL. 179 return NULL.
180 180
181 @param part the MIME documemt part 181 @param part the MIME documemt part
182 @param 182 @param data Buffer for the data
183 @param len The length of the buffer
183 */ 184 */
184 void gaim_mime_part_get_data_decoded(GaimMimePart *part, 185 void gaim_mime_part_get_data_decoded(GaimMimePart *part,
185 char **data, gsize *len); 186 char **data, gsize *len);
186 187
187 188