diff options
Diffstat (limited to 'camel/providers/imap/camel-imap-store.h')
-rw-r--r-- | camel/providers/imap/camel-imap-store.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/providers/imap/camel-imap-store.h b/camel/providers/imap/camel-imap-store.h index 2e944d12d2..a24723b657 100644 --- a/camel/providers/imap/camel-imap-store.h +++ b/camel/providers/imap/camel-imap-store.h @@ -32,6 +32,7 @@ extern "C" { #pragma } #endif /* __cplusplus }*/ +#include "camel-imap-types.h" #include "camel-remote-store.h" #define CAMEL_IMAP_STORE_TYPE (camel_imap_store_get_type ()) @@ -54,7 +55,7 @@ typedef enum { #define IMAP_CAPABILITY_UIDPLUS (1 << 6) #define IMAP_CAPABILITY_LITERALPLUS (1 << 7) -typedef struct { +struct _CamelImapStore { CamelRemoteStore parent_object; struct _CamelImapStorePrivate *priv; @@ -71,7 +72,7 @@ typedef struct { GHashTable *subscribed_folders; gboolean useful_lsub; -} CamelImapStore; +}; typedef struct { |