vb@48: #pragma once vb@48: vb@48: #include vb@48: vb@48: vb@48: struct mailmime * part_new_empty( vb@48: struct mailmime_content * content, vb@48: struct mailmime_fields * mime_fields, vb@48: const char * boundary_prefix, vb@48: int force_single vb@48: ); vb@48: vb@48: struct mailmime * get_text_part( vb@48: const char * mime_type, vb@48: const char * text, vb@48: size_t length, vb@48: int encoding_type vb@48: ); vb@48: vb@48: struct mailmime * part_multiple_new( vb@48: const char * type, vb@48: const char * boundary_prefix vb@48: ); vb@48: