Lines Matching refs:part
27 curl_mime_addpart - append a new empty part to a mime structure
39 curl_mime_addpart(3) creates and appends a new empty part to the given
40 mime structure and returns a handle to it. The returned part handle can
43 *mime* is the handle of the mime structure in which the new part must be
54 curl_mimepart *part;
61 /* add a part */
62 part = curl_mime_addpart(mime);
64 /* continue and set name + data to the part */
65 curl_mime_data(part, "This is the field data", CURL_ZERO_TERMINATED);
66 curl_mime_name(part, "data");
75 A mime part structure handle, or NULL upon failure.