/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Authors: Jeffrey Stedfast * * Copyright 2000 Helix Code, Inc. (www.helixcode.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. * */ #ifndef CAMEL_IMAP_UTILS_H #define CAMEL_IMAP_UTILS_H 1 #ifdef __cplusplus extern "C" { #pragma } #endif /* __cplusplus }*/ #include "camel-folder-summary.h" char *imap_next_word (const char *buf); #define IMAP_LIST_FLAG_NOINFERIORS (1 << 0) #define IMAP_LIST_FLAG_NOSELECT (1 << 1) #define IMAP_LIST_FLAG_MARKED (1 << 2) #define IMAP_LIST_FLAG_UNMARKED (1 << 3) gboolean imap_parse_list_response (const char *buf, int *flags, char *sep, char **folder); char *imap_create_flag_list (guint32 flags); guint32 imap_parse_flag_list (char **flag_list); enum { IMAP_STRING, IMAP_NSTRING, IMAP_ASTRING }; char *imap_parse_string_generic (char **str_p, int *len, int type); #define imap_parse_string(str_p, len_p) \ imap_parse_string_generic (str_p, len_p, IMAP_STRING) #define imap_parse_nstring(str_p, len_p) \ imap_parse_string_generic (str_p, len_p, IMAP_NSTRING) #define imap_parse_astring(str_p, len_p) \ imap_parse_string_generic (str_p, len_p, IMAP_ASTRING) void imap_parse_body (char **body_p, CamelFolder *folder, CamelMessageContentInfo *ci); char *imap_quote_string (const char *str); void imap_skip_list (char **str_p); char * imap_uid_array_to_set (CamelFolderSummary *summary, GPtrArray *uids); GPtrArray *imap_uid_set_to_array (CamelFolderSummary *summary, const char *uids); void imap_uid_array_free (GPtrArray *arr); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* CAMEL_IMAP_UTILS_H */