diff options
author | Dan Winship <danw@src.gnome.org> | 2001-01-11 04:19:45 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-01-11 04:19:45 +0800 |
commit | e1ffe7ed975b20ef6896b3cd41b72199a8aac214 (patch) | |
tree | 87dc069dc9e4e6713d241979b86a9aaa180eb5a6 /camel/providers/imap/camel-imap-summary.h | |
parent | a1ca83afd9f3fa742d9f2c07b990b576d3867668 (diff) | |
download | gsoc2013-evolution-e1ffe7ed975b20ef6896b3cd41b72199a8aac214.tar.gz gsoc2013-evolution-e1ffe7ed975b20ef6896b3cd41b72199a8aac214.tar.zst gsoc2013-evolution-e1ffe7ed975b20ef6896b3cd41b72199a8aac214.zip |
New header to prevent recursive #include problems
* providers/imap/camel-imap-types.h: New header to prevent
recursive #include problems
* providers/imap/*.h: Replace some #includes with #include
"camel-imap-types.h", remove typedefs that were moved to
camel-imap-types.h
* providers/imap/*.c: Add #includes to make up for #includes
removed from .h files
* providers/imap/Makefile.am (libcamelimapinclude_HEADERS): Add
camel-imap-types.h
svn path=/trunk/; revision=7367
Diffstat (limited to 'camel/providers/imap/camel-imap-summary.h')
-rw-r--r-- | camel/providers/imap/camel-imap-summary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-summary.h b/camel/providers/imap/camel-imap-summary.h index cd3556b23b..e3ee2ff13b 100644 --- a/camel/providers/imap/camel-imap-summary.h +++ b/camel/providers/imap/camel-imap-summary.h @@ -24,6 +24,7 @@ #ifndef _CAMEL_IMAP_SUMMARY_H #define _CAMEL_IMAP_SUMMARY_H +#include "camel-imap-types.h" #include <camel/camel-folder-summary.h> #include <camel/camel-exception.h> @@ -31,7 +32,6 @@ #define CAMEL_IMAP_SUMMARY_CLASS(klass) CAMEL_CHECK_CLASS_CAST (klass, camel_imap_summary_get_type (), CamelImapSummaryClass) #define CAMEL_IS_IMAP_SUMMARY(obj) CAMEL_CHECK_TYPE (obj, camel_imap_summary_get_type ()) -typedef struct _CamelImapSummary CamelImapSummary; typedef struct _CamelImapSummaryClass CamelImapSummaryClass; typedef struct _CamelImapMessageContentInfo { |