aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-message.h
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@aful.org>1999-08-06 00:42:14 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-08-06 00:42:14 +0800
commit5de5ccdbae6e7a1a12d8ad3579cfa599eaaa903b (patch)
tree04029ab5ea23c8ef176c98031ec1c6a268cef6c0 /camel/camel-mime-message.h
parent616d409f7cb18b0dfcac25cb17574e4d9d39d293 (diff)
downloadgsoc2013-evolution-5de5ccdbae6e7a1a12d8ad3579cfa599eaaa903b.tar
gsoc2013-evolution-5de5ccdbae6e7a1a12d8ad3579cfa599eaaa903b.tar.gz
gsoc2013-evolution-5de5ccdbae6e7a1a12d8ad3579cfa599eaaa903b.tar.bz2
gsoc2013-evolution-5de5ccdbae6e7a1a12d8ad3579cfa599eaaa903b.tar.lz
gsoc2013-evolution-5de5ccdbae6e7a1a12d8ad3579cfa599eaaa903b.tar.xz
gsoc2013-evolution-5de5ccdbae6e7a1a12d8ad3579cfa599eaaa903b.tar.zst
gsoc2013-evolution-5de5ccdbae6e7a1a12d8ad3579cfa599eaaa903b.zip
new method. (camel_folder_get_message): corresponding public call
1999-08-05 bertrand <Bertrand.Guiheneuf@aful.org> * camel/camel-folder.c (_get_message): new method. (camel_folder_get_message): corresponding public call svn path=/trunk/; revision=1082
Diffstat (limited to 'camel/camel-mime-message.h')
-rw-r--r--camel/camel-mime-message.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/camel/camel-mime-message.h b/camel/camel-mime-message.h
index 617286b0c1..17fa510987 100644
--- a/camel/camel-mime-message.h
+++ b/camel/camel-mime-message.h
@@ -31,6 +31,8 @@ extern "C" {
#pragma }
#endif /* __cplusplus }*/
+typedef struct _CamelMimeMessage CamelMimeMessage;
+
#include <gtk/gtk.h>
#include "camel-mime-part.h"
#include "camel-folder.h"
@@ -49,7 +51,7 @@ extern "C" {
-typedef struct
+struct _CamelMimeMessage
{
CamelMimePart parent_object;
@@ -73,7 +75,7 @@ typedef struct
CamelFolder *folder;
CamelSession *session;
-} CamelMimeMessage;
+} ;