aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-store.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-06-10 05:19:57 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-06-10 05:19:57 +0800
commit08cb892beab3ede04759a23e04b72e558de21cfb (patch)
tree89d71bc129b43074b84b6dbfcf21c55a8c82f466 /camel/providers/imap/camel-imap-store.h
parentd4d2509314390320af15be637fba93fb969ec24f (diff)
downloadgsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.tar
gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.tar.gz
gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.tar.bz2
gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.tar.lz
gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.tar.xz
gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.tar.zst
gsoc2013-evolution-08cb892beab3ede04759a23e04b72e558de21cfb.zip
Updated to reflect changes made in camel-imap-store.c
2000-06-09 Jeffrey Stedfast <fejj@helixcode.com> * providers/imap/camel-imap-stream.c (stream_read): Updated to reflect changes made in camel-imap-store.c * providers/imap/camel-imap-store.c (imap_create): No longer checks to make sure a folder doesn't already exists (as this is no longer needed) (camel_imap_command): Now takes a CamelFolder argument so it can detect whether or not it needs to SELECT a folder or not (camel_imap_command_extended): Same. svn path=/trunk/; revision=3494
Diffstat (limited to 'camel/providers/imap/camel-imap-store.h')
-rw-r--r--camel/providers/imap/camel-imap-store.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/providers/imap/camel-imap-store.h b/camel/providers/imap/camel-imap-store.h
index 5ea6eca09e..587415b153 100644
--- a/camel/providers/imap/camel-imap-store.h
+++ b/camel/providers/imap/camel-imap-store.h
@@ -3,7 +3,6 @@
/*
* Authors: Jeffrey Stedfast <fejj@helixcode.com>
- * Ross Golder <ross@golder.org>
*
* Copyright (C) 2000 Helix Code, Inc.
*
@@ -45,6 +44,7 @@ extern "C" {
typedef struct {
CamelStore parent_object;
+ CamelFolder *current_folder;
CamelStream *istream, *ostream;
guint32 command;
@@ -67,8 +67,8 @@ void camel_imap_store_close (CamelImapStore *store, gboolean expunge,
enum { CAMEL_IMAP_OK, CAMEL_IMAP_ERR, CAMEL_IMAP_FAIL };
-gint camel_imap_command (CamelImapStore *store, char **ret, char *fmt, ...);
-gint camel_imap_command_extended (CamelImapStore *store, char **ret, char *fmt, ...);
+gint camel_imap_command (CamelImapStore *store, CamelFolder *folder, char **ret, char *fmt, ...);
+gint camel_imap_command_extended (CamelImapStore *store, CamelFolder *folder, char **ret, char *fmt, ...);
/* Standard Gtk function */
GtkType camel_imap_store_get_type (void);