diff options
author | nobody <nobody@localhost> | 2001-09-17 12:32:38 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2001-09-17 12:32:38 +0800 |
commit | 1a12f9371d8f66c213e187617a069509d2fa2693 (patch) | |
tree | 6f31e70927858f2bafcfc481e337a665090bdb8e /mail/mail-folder-cache.h | |
parent | 169d9ae19a0eb165edc757eca753a757a02f60f7 (diff) | |
download | gsoc2013-evolution-BONOBO_CONF_0_12.tar gsoc2013-evolution-BONOBO_CONF_0_12.tar.gz gsoc2013-evolution-BONOBO_CONF_0_12.tar.bz2 gsoc2013-evolution-BONOBO_CONF_0_12.tar.lz gsoc2013-evolution-BONOBO_CONF_0_12.tar.xz gsoc2013-evolution-BONOBO_CONF_0_12.tar.zst gsoc2013-evolution-BONOBO_CONF_0_12.zip |
This commit was manufactured by cvs2svn to create tagBONOBO_CONF_0_12
'BONOBO_CONF_0_12'.
svn path=/tags/BONOBO_CONF_0_12/; revision=12875
Diffstat (limited to 'mail/mail-folder-cache.h')
-rw-r--r-- | mail/mail-folder-cache.h | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/mail/mail-folder-cache.h b/mail/mail-folder-cache.h deleted file mode 100644 index df99ef7283..0000000000 --- a/mail/mail-folder-cache.h +++ /dev/null @@ -1,64 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* mail-folder-cache.h: Stores information about open folders */ - -/* - * Authors: Peter Williams <peterw@ximian.com> - * - * Copyright 2000,2001 Ximian, Inc. (www.ximian.com) - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA - */ - -#ifndef _MAIL_FOLDER_CACHE_H -#define _MAIL_FOLDER_CACHE_H - -#include <camel/camel-folder.h> -#include <camel/camel-store.h> -#include <shell/evolution-storage.h> -#include <shell/Evolution.h> - -#include "folder-browser.h" - -/* No real order that these functions should be called. The idea is - * that whenever a chunk of the mailer gets some up-to-date - * information about a URI, it calls one of the _note_ functions and - * the folder cache sees to it that the information is put to good - * use. - * - * Thus there is no way to remove items from the cache. So it leaks a lot. */ - -void mail_folder_cache_set_update_estorage (const gchar *uri, EvolutionStorage *estorage); -void mail_folder_cache_set_update_lstorage (const gchar *uri, - GNOME_Evolution_Storage lstorage, - const gchar *path); - -void mail_folder_cache_remove_folder (const gchar *uri); - -/* We always update the shell view */ -/*void mail_folder_cache_set_update_shellview (const gchar *uri);*/ - -void mail_folder_cache_note_folder (const gchar *uri, CamelFolder *folder); -void mail_folder_cache_note_fb (const gchar *uri, FolderBrowser *fb); -void mail_folder_cache_note_folderinfo (const gchar *uri, CamelFolderInfo *fi); -void mail_folder_cache_note_name (const gchar *uri, const gchar *name); - -CamelFolder *mail_folder_cache_try_folder (const gchar *uri); -gchar * mail_folder_cache_try_name (const gchar *uri); - -void mail_folder_cache_set_shell_view (GNOME_Evolution_ShellView sv); -void mail_folder_cache_set_folder_browser (FolderBrowser *fb); - -#endif |