aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-store.h
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-store.h')
-rw-r--r--camel/camel-store.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/camel/camel-store.h b/camel/camel-store.h
index 3d8e10af8c..8aaa820d64 100644
--- a/camel/camel-store.h
+++ b/camel/camel-store.h
@@ -51,8 +51,18 @@ typedef struct _CamelFolderInfo {
char *full_name;
char *path;
int unread_message_count;
+ guint32 flags;
} CamelFolderInfo;
+/* Note: these are abstractions (duh), its upto the provider to make them make sense */
+
+/* a folder which can't contain messages */
+#define CAMEL_FOLDER_NOSELECT (1<<0)
+/* a folder which cannot have children */
+#define CAMEL_FOLDER_NOINFERIORS (1<<1)
+/* a folder which has children (not yet fully implemented) */
+#define CAMEL_FOLDER_CHILDREN (1<<2)
+
/* Structure of rename event's event_data */
typedef struct _CamelRenameInfo {
char *old_base;