diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-08-30 12:03:07 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-08-30 12:03:07 +0800 |
commit | 149838c6df1ec4579b2cea7e95014f80151637f1 (patch) | |
tree | f7ead9801942f576ce9487be6f745a19969dc60b /camel/providers/imap/camel-imap-store.h | |
parent | 3242c4685bc4a021efb58bbefe1603c1f5f8d2ea (diff) | |
download | gsoc2013-evolution-149838c6df1ec4579b2cea7e95014f80151637f1.tar gsoc2013-evolution-149838c6df1ec4579b2cea7e95014f80151637f1.tar.gz gsoc2013-evolution-149838c6df1ec4579b2cea7e95014f80151637f1.tar.bz2 gsoc2013-evolution-149838c6df1ec4579b2cea7e95014f80151637f1.tar.lz gsoc2013-evolution-149838c6df1ec4579b2cea7e95014f80151637f1.tar.xz gsoc2013-evolution-149838c6df1ec4579b2cea7e95014f80151637f1.tar.zst gsoc2013-evolution-149838c6df1ec4579b2cea7e95014f80151637f1.zip |
Prevent exceptions from being overwritten
2000-08-30 Jeffrey Stedfast <fejj@helixcode.com>
* camel-remote-store.c: Prevent exceptions from being overwritten
* providers/imap/camel-imap-folder.c (imap_expunge): Beautified
(imap_get_subfolder_names_internal): Removed old code as the
replacement code has now been tested and proven to work
svn path=/trunk/; revision=5107
Diffstat (limited to 'camel/providers/imap/camel-imap-store.h')
-rw-r--r-- | camel/providers/imap/camel-imap-store.h | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/camel/providers/imap/camel-imap-store.h b/camel/providers/imap/camel-imap-store.h index c153b11aa4..eecc42a1e0 100644 --- a/camel/providers/imap/camel-imap-store.h +++ b/camel/providers/imap/camel-imap-store.h @@ -83,13 +83,29 @@ enum { CAMEL_IMAP_FAIL }; -gint camel_imap_command (CamelImapStore *store, CamelFolder *folder, CamelException *ex, char *fmt, ...); -gint camel_imap_command_extended (CamelImapStore *store, CamelFolder *folder, char **ret, CamelException *ex, char *fmt, ...); +gint camel_imap_command (CamelImapStore *store, CamelFolder *folder, + CamelException *ex, char *fmt, ...); + +gint camel_imap_command_extended (CamelImapStore *store, CamelFolder *folder, + char **ret, CamelException *ex, char *fmt, ...); /* multi-transactional commands... */ -gint camel_imap_command_preliminary (CamelImapStore *store, char **cmdid, CamelException *ex, char *fmt, ...); -gint camel_imap_command_continuation (CamelImapStore *store, char **ret, char *cmdid, char *cmdbuf, CamelException *ex); -gint camel_imap_command_continuation_with_stream (CamelImapStore *store, char **ret, char *cmdid, CamelStream *cstream, CamelException *ex); +gint camel_imap_command_preliminary (CamelImapStore *store, + char **cmdid, + CamelException *ex, + char *fmt, ...); + +gint camel_imap_command_continuation (CamelImapStore *store, + char **ret, + char *cmdid, + char *cmdbuf, + CamelException *ex); + +gint camel_imap_command_continuation_with_stream (CamelImapStore *store, + char **ret, + char *cmdid, + CamelStream *cstream, + CamelException *ex); /* Standard Camel function */ CamelType camel_imap_store_get_type (void); |