aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-stream.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-06-08 05:57:27 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-06-08 05:57:27 +0800
commitc19352fd53ba876a150ff4324aebb0dc06e9e190 (patch)
treedb5b2045221f7f6ca3bd0c862333a92697876b04 /camel/providers/imap/camel-imap-stream.h
parent9da3c9d23193030efac42e063ed207322bc710a9 (diff)
downloadgsoc2013-evolution-c19352fd53ba876a150ff4324aebb0dc06e9e190.tar
gsoc2013-evolution-c19352fd53ba876a150ff4324aebb0dc06e9e190.tar.gz
gsoc2013-evolution-c19352fd53ba876a150ff4324aebb0dc06e9e190.tar.bz2
gsoc2013-evolution-c19352fd53ba876a150ff4324aebb0dc06e9e190.tar.lz
gsoc2013-evolution-c19352fd53ba876a150ff4324aebb0dc06e9e190.tar.xz
gsoc2013-evolution-c19352fd53ba876a150ff4324aebb0dc06e9e190.tar.zst
gsoc2013-evolution-c19352fd53ba876a150ff4324aebb0dc06e9e190.zip
Added rules to build camel-imap-stream
2000-06-07 Jeffrey Stedfast <fejj@helixcode.com> * providers/imap/Makefile.am: Added rules to build camel-imap-stream * providers/imap/camel-imap-store.c (get_folder): Update. Moved imap_create here. * providers/imap/camel-imap-folder.c (delete_messages): Remove. (imap_create): Removed. (imap_delete): Removed. (imap_exists): Removed. * providers/imap/camel-imap-stream.h: Added typedef's for the stream * providers/imap/camel-imap-stream.c: Modified to build cleanly svn path=/trunk/; revision=3468
Diffstat (limited to 'camel/providers/imap/camel-imap-stream.h')
-rw-r--r--camel/providers/imap/camel-imap-stream.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/camel/providers/imap/camel-imap-stream.h b/camel/providers/imap/camel-imap-stream.h
index 01e7e59e18..6cb96e8cc5 100644
--- a/camel/providers/imap/camel-imap-stream.h
+++ b/camel/providers/imap/camel-imap-stream.h
@@ -41,8 +41,10 @@ extern "C" {
#define CAMEL_IMAP_STREAM_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), CAMEL_IMAP_STREAM_TYPE, CamelImapStreamClass))
#define CAMEL_IS_IMAP_STREAM(o) (GTK_CHECK_TYPE((o), CAMEL_IMAP_STREAM_TYPE))
-struct _CamelImapStream
-{
+typedef struct _CamelImapStream CamelImapStream;
+typedef struct _CamelImapStreamClass CamelImapStreamClass;
+
+struct _CamelImapStream {
CamelStream parent_object;
CamelImapFolder *folder;
@@ -51,11 +53,11 @@ struct _CamelImapStream
char *cache_ptr;
};
-typedef struct {
+struct _CamelImapStreamClass {
CamelStreamClass parent_class;
/* Virtual methods */
-} CamelImapStreamClass;
+};
/* Standard Gtk function */
GtkType camel_imap_stream_get_type (void);