comparison libpurple/mime.h @ 19114:6de2e9ba0930

merge of '2970edca111b3535ae0703e3c866ad1c3b87df94' and 'a2b508e8680ac3f20965226a5dd83f7e2a3b15bb'
author Eric Polino <aluink@pidgin.im>
date Sun, 24 Jun 2007 02:56:09 +0000
parents ab6d2763b8d8
children 44b4e8bd759b
comparison
equal deleted inserted replaced
19102:7f26e5b98b15 19114:6de2e9ba0930
88 /** 88 /**
89 * The list of fields in the header of a document 89 * The list of fields in the header of a document
90 * 90 *
91 * @param doc The MIME document. 91 * @param doc The MIME document.
92 * 92 *
93 * @returns A list of strings indicating the fields (but not the values of 93 * @constreturn A list of strings indicating the fields (but not the values
94 * the fields) in the header of doc. 94 * of the fields) in the header of doc.
95 */ 95 */
96 const GList *purple_mime_document_get_fields(PurpleMimeDocument *doc); 96 GList *purple_mime_document_get_fields(PurpleMimeDocument *doc);
97 97
98 /** 98 /**
99 * Get the value of a specific field in the header of a document. 99 * Get the value of a specific field in the header of a document.
100 * 100 *
101 * @param doc The MIME document. 101 * @param doc The MIME document.
123 /** 123 /**
124 * The list of parts in a multipart document. 124 * The list of parts in a multipart document.
125 * 125 *
126 * @param doc The MIME document. 126 * @param doc The MIME document.
127 * 127 *
128 * @returns List of PurpleMimePart contained within doc. 128 * @constreturn List of PurpleMimePart contained within doc.
129 */ 129 */
130 const GList *purple_mime_document_get_parts(PurpleMimeDocument *doc); 130 GList *purple_mime_document_get_parts(PurpleMimeDocument *doc);
131 131
132 /** 132 /**
133 * Create and insert a new part into a MIME document. 133 * Create and insert a new part into a MIME document.
134 * 134 *
135 * @param doc The new part's parent MIME document. 135 * @param doc The new part's parent MIME document.
140 /** 140 /**
141 * The list of fields in the header of a document part. 141 * The list of fields in the header of a document part.
142 * 142 *
143 * @param part The MIME document part. 143 * @param part The MIME document part.
144 * 144 *
145 * @returns List of strings indicating the fields (but not the values 145 * @constreturn List of strings indicating the fields (but not the values
146 * of the fields) in the header of part. 146 * of the fields) in the header of part.
147 */ 147 */
148 const GList *purple_mime_part_get_fields(PurpleMimePart *part); 148 GList *purple_mime_part_get_fields(PurpleMimePart *part);
149 149
150 150
151 /** 151 /**
152 * Get the value of a specific field in the header of a document part. 152 * Get the value of a specific field in the header of a document part.
153 * 153 *