From ac71e9d8f34c61804a3e37c57b5c9dfc56e62029 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Wed, 10 Dec 2003 19:22:20 +0000 Subject: Add a CAMEL_FOLDER_NOCHILDREN flag. 2003-12-10 Jeffrey Stedfast * camel-store.h: Add a CAMEL_FOLDER_NOCHILDREN flag. * providers/imap/camel-imap-store.c (get_folders): Same as below. * providers/imap/camel-imap-utils.c (imap_parse_list_response): s/CAMEL_IMAP_FOLDER_NOCHILDREN/CAMEL_FOLDER_NOCHILDREN/ svn path=/trunk/; revision=23911 --- camel/camel-store.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'camel/camel-store.h') diff --git a/camel/camel-store.h b/camel/camel-store.h index 2b65751aac..30f69d1e67 100644 --- a/camel/camel-store.h +++ b/camel/camel-store.h @@ -64,8 +64,10 @@ typedef struct _CamelFolderInfo { #define CAMEL_FOLDER_NOINFERIORS (1<<1) /* a folder which has children (not yet fully implemented) */ #define CAMEL_FOLDER_CHILDREN (1<<2) +/* a folder which does not have any children (not yet fully implemented) */ +#define CAMEL_FOLDER_NOCHILDREN (1<<3) /* a folder which is subscribed */ -#define CAMEL_FOLDER_SUBSCRIBED (1<<3) +#define CAMEL_FOLDER_SUBSCRIBED (1<<4) /* Structure of rename event's event_data */ typedef struct _CamelRenameInfo { -- cgit