aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder.h
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-folder.h')
-rw-r--r--camel/camel-folder.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/camel/camel-folder.h b/camel/camel-folder.h
index 40d7d8f303..53ff89e70d 100644
--- a/camel/camel-folder.h
+++ b/camel/camel-folder.h
@@ -48,9 +48,10 @@ typedef enum {
} CamelFolderState;
typedef enum {
- FOLDER_OPEN_UNKNOWN, /* folder open mode is unknown */
- FOLDER_OPEN_READ, /* folder is read only */
- FOLDER_OPEN_READ_WRITE /* folder is read/write */
+ FOLDER_OPEN_UNKNOWN = 0, /* folder open mode is unknown */
+ FOLDER_OPEN_READ = 1, /* folder is read only */
+ FOLDER_OPEN_WRITE = 2, /* folder is write only */
+ FOLDER_OPEN_RW = 3 /* folder is read/write */
} CamelFolderOpenMode;