diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-12-11 03:22:20 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-12-11 03:22:20 +0800 |
commit | ac71e9d8f34c61804a3e37c57b5c9dfc56e62029 (patch) | |
tree | 643b0edac49393483dd706a80558343a2dda71a1 /camel/camel-store.h | |
parent | e3262cdc7e24aece3074a0c92ce3e529acf3568e (diff) | |
download | gsoc2013-evolution-ac71e9d8f34c61804a3e37c57b5c9dfc56e62029.tar.gz 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.h | 4 |
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 { |