aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-store.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-12-11 03:22:20 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-12-11 03:22:20 +0800
commitac71e9d8f34c61804a3e37c57b5c9dfc56e62029 (patch)
tree643b0edac49393483dd706a80558343a2dda71a1 /camel/camel-store.h
parente3262cdc7e24aece3074a0c92ce3e529acf3568e (diff)
downloadgsoc2013-evolution-ac71e9d8f34c61804a3e37c57b5c9dfc56e62029.tar
gsoc2013-evolution-ac71e9d8f34c61804a3e37c57b5c9dfc56e62029.tar.gz
gsoc2013-evolution-ac71e9d8f34c61804a3e37c57b5c9dfc56e62029.tar.bz2
gsoc2013-evolution-ac71e9d8f34c61804a3e37c57b5c9dfc56e62029.tar.lz
gsoc2013-evolution-ac71e9d8f34c61804a3e37c57b5c9dfc56e62029.tar.xz
gsoc2013-evolution-ac71e9d8f34c61804a3e37c57b5c9dfc56e62029.tar.zst
gsoc2013-evolution-ac71e9d8f34c61804a3e37c57b5c9dfc56e62029.zip
Add a CAMEL_FOLDER_NOCHILDREN flag.
2003-12-10 Jeffrey Stedfast <fejj@ximian.com> * 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
Diffstat (limited to 'camel/camel-store.h')
-rw-r--r--camel/camel-store.h4
1 files changed, 3 insertions, 1 deletions
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 {