![]() |
![]()
| ![]() |
![]()
NAMEcurl_mime_addpart - append a new empty part to a mime structure SYNOPSIS#include <curl/curl.h> curl_mimepart *curl_mime_addpart(curl_mime *mime); DESCRIPTIONcurl_mime_addpart(3) creates and appends a new empty part to the given mime structure and returns a handle to it. The returned part handle can subsequently be populated using functions from the mime API. mime is the handle of the mime structure in which the new part must be appended. PROTOCOLSThis functionality affects http, imap and smtp EXAMPLEint main(void) { AVAILABILITYAdded in curl 7.56.0 RETURN VALUEA mime part structure handle, or NULL upon failure. SEE ALSOcurl_mime_data(3), curl_mime_data_cb(3), curl_mime_encoder(3), curl_mime_filedata(3), curl_mime_filename(3), curl_mime_headers(3), curl_mime_init(3), curl_mime_name(3), curl_mime_subparts(3), curl_mime_type(3)
|