~ubuntu-branches/ubuntu/precise/mutt/precise

« back to all changes in this revision

Viewing changes to hcache.h

  • Committer: Package Import Robot
  • Author(s): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2010-12-17 14:28:28 UTC
  • mfrom: (16.2.3 experimental)
  • Revision ID: package-import@ubuntu.com-20101217142828-ve8yy0xf1zomtnx9
Tags: 1.5.21-1ubuntu1
* Merge with Debian experimental (LP: #691512), remaining changes:
  + debian/control, debian/patches/debian-specific/build_doc_adjustments.diff:
    Use w3m (main) instead of elinks (universe) for generating documentation.
  + Drop libtokyocabinet-dev (universe) from Build-Depends, use always
    libgdbm-dev and also use gdbm for the header cache backend. (lp: #607448)

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
void *mutt_hcache_fetch(header_cache_t *h, const char *filename, size_t (*keylen)(const char *fn));
34
34
void *mutt_hcache_fetch_raw (header_cache_t *h, const char *filename,
35
35
                             size_t (*keylen)(const char *fn));
 
36
/* uidvalidity is an IMAP-specific unsigned 32 bit number */
36
37
int mutt_hcache_store(header_cache_t *h, const char *filename, HEADER *header,
37
 
                      unsigned long uid_validity, size_t (*keylen)(const char *fn));
 
38
                      unsigned int uidvalidity, size_t (*keylen)(const char *fn));
38
39
int mutt_hcache_store_raw (header_cache_t *h, const char* filename, void* data,
39
40
                           size_t dlen, size_t(*keylen) (const char* fn));
40
41
int mutt_hcache_delete(header_cache_t *h, const char *filename, size_t (*keylen)(const char *fn));