aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-uid-cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-uid-cache.h')
-rw-r--r--camel/camel-uid-cache.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/camel/camel-uid-cache.h b/camel/camel-uid-cache.h
index e4327c9b12..37d90c89e6 100644
--- a/camel/camel-uid-cache.h
+++ b/camel/camel-uid-cache.h
@@ -30,12 +30,18 @@ extern "C" {
#pragma }
#endif /* __cplusplus */
-#include <stdio.h>
#include <glib.h>
+#include <stdio.h>
+#include <sys/types.h>
+
typedef struct {
- int fd, level;
+ char *filename;
GHashTable *uids;
+ unsigned int level;
+ size_t expired;
+ size_t size;
+ int fd;
} CamelUIDCache;
CamelUIDCache *camel_uid_cache_new (const char *filename);