diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-08-13 06:56:55 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-08-13 06:56:55 +0800 |
commit | 031bffff9cf122ac2014d364c249d7e894929bbc (patch) | |
tree | 08d63e6ca24ce7e9fc35ab4bc83d731abc539d07 /camel/providers/imap/camel-imap-store.h | |
parent | 8b3a32b908b9e0bb6029ea07f0089f979a1e5974 (diff) | |
download | gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.tar gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.tar.gz gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.tar.bz2 gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.tar.lz gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.tar.xz gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.tar.zst gsoc2013-evolution-031bffff9cf122ac2014d364c249d7e894929bbc.zip |
Now takes a char * parameter rather than a stream
2000-08-12 Jeffrey Stedfast <fejj@helixcode.com>
* providers/imap/camel-imap-store.c
(camel_imap_command_continuation): Now takes a char * parameter
rather than a stream
(camel_imap_command_continuation_with_stream): Same function as
above but takes a stream parameter instead
* providers/imap/camel-imap-folder.c (imap_append_message): Use
camel_imap_command_continuation_with_stream
svn path=/trunk/; revision=4786
Diffstat (limited to 'camel/providers/imap/camel-imap-store.h')
-rw-r--r-- | camel/providers/imap/camel-imap-store.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.h b/camel/providers/imap/camel-imap-store.h index 678cf83a1d..fcf0bcaf39 100644 --- a/camel/providers/imap/camel-imap-store.h +++ b/camel/providers/imap/camel-imap-store.h @@ -88,7 +88,8 @@ gint camel_imap_command_extended (CamelImapStore *store, CamelFolder *folder, ch /* multi-transactional commands... */ gint camel_imap_command_preliminary (CamelImapStore *store, char **ret, char **cmdid, char *fmt, ...); -gint camel_imap_command_continuation (CamelImapStore *store, char **ret, char *cmdid, CamelStream *cstream); +gint camel_imap_command_continuation (CamelImapStore *store, char **ret, char *cmdid, char *cmdbuf); +gint camel_imap_command_continuation_with_stream (CamelImapStore *store, char **ret, char *cmdid, CamelStream *cstream); /* Standard Camel function */ CamelType camel_imap_store_get_type (void); |