diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-07-28 02:32:23 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-07-28 02:32:23 +0800 |
commit | 4a4c22b8e13922b35937690dca168819b411df2d (patch) | |
tree | 77947df5e22ab31467a0798e3dd722da70b8fb44 /camel/providers/imap/camel-imap-folder.h | |
parent | 84d7c755a0216918b31ae5917c0cffd86d9cc870 (diff) | |
download | gsoc2013-evolution-4a4c22b8e13922b35937690dca168819b411df2d.tar.gz gsoc2013-evolution-4a4c22b8e13922b35937690dca168819b411df2d.tar.zst gsoc2013-evolution-4a4c22b8e13922b35937690dca168819b411df2d.zip |
Now uses a hash table for looking up message info rather than a linear
2000-07-27 Jeffrey Stedfast <fejj@helixcode.com>
* providers/imap/camel-imap-folder.c (imap_get_message_info): Now uses
a hash table for looking up message info rather than a linear search :)
svn path=/trunk/; revision=4398
Diffstat (limited to 'camel/providers/imap/camel-imap-folder.h')
-rw-r--r-- | camel/providers/imap/camel-imap-folder.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/camel/providers/imap/camel-imap-folder.h b/camel/providers/imap/camel-imap-folder.h index 1a68eb83fc..d87df24905 100644 --- a/camel/providers/imap/camel-imap-folder.h +++ b/camel/providers/imap/camel-imap-folder.h @@ -46,7 +46,10 @@ typedef struct { CamelFolder parent_object; CamelFolderSearch *search; /* used to run searches */ + GPtrArray *summary; + GHashTable *summary_hash; + GPtrArray *lsub; } CamelImapFolder; |