Details
struct GMimeParam
struct GMimeParam {
struct _GMimeParam *next;
char *name;
char *value;
}; |
g_mime_param_new ()
GMimeParam* g_mime_param_new (const char *name,
const char *value); |
Creates a new GMimeParam node with name name and value value.
g_mime_param_new_from_string ()
GMimeParam* g_mime_param_new_from_string (const char *string); |
Creates a parameter list based on the input string.
g_mime_param_destroy ()
Releases all memory used by this mime param back to the Operating
System.
g_mime_param_append ()
Appends a new parameter with name name and value value to the
parameter list params.
g_mime_param_append_param ()
Appends param to the param list params.
g_mime_param_write_to_string ()
void g_mime_param_write_to_string (GMimeParam *param,
gboolean fold,
GString *string); |
Assumes the output string contains only the Content-* header and
it's immediate value.
Writes the params out to the string string.