Changeset 5073:efbcef81ac49 for imap/imap_private.h
- Timestamp:
- 2007-04-05 17:33:47 (22 months ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
imap/imap_private.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
imap/imap_private.h
r5064 r5073 25 25 #include "mutt_socket.h" 26 26 #include "bcache.h" 27 #ifdef USE_HCACHE 28 #include "hcache.h" 29 #endif 27 30 28 31 /* -- symbols -- */ … … 209 212 /* all folder flags - system flags AND keywords */ 210 213 LIST *flags; 214 #ifdef USE_HCACHE 215 header_cache_t *hcache; 216 #endif 211 217 } IMAP_DATA; 212 218 /* I wish that were called IMAP_CONTEXT :( */ … … 254 260 /* util.c */ 255 261 #ifdef USE_HCACHE 256 void* imap_hcache_open (IMAP_DATA* idata, const char* path);262 header_cache_t* imap_hcache_open (IMAP_DATA* idata, const char* path); 257 263 #endif 258 264
