aboutsummaryrefslogtreecommitdiffstats
path: root/mail/html-stream.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-02-17 07:51:01 +0800
committernobody <nobody@localhost>2000-02-17 07:51:01 +0800
commit2b80feefead30f2b24a3c51c4b52373c5faacbac (patch)
tree646d019769a1d66081bd13dc9cab96c4417d8843 /mail/html-stream.h
parent5a80143a526ddc84b31e8458c525d40580c06810 (diff)
downloadgsoc2013-evolution-GNOME_CORE_1_1_4.tar
gsoc2013-evolution-GNOME_CORE_1_1_4.tar.gz
gsoc2013-evolution-GNOME_CORE_1_1_4.tar.bz2
gsoc2013-evolution-GNOME_CORE_1_1_4.tar.lz
gsoc2013-evolution-GNOME_CORE_1_1_4.tar.xz
gsoc2013-evolution-GNOME_CORE_1_1_4.tar.zst
gsoc2013-evolution-GNOME_CORE_1_1_4.zip
This commit was manufactured by cvs2svn to create tagGNOME_CORE_1_1_4
'GNOME_CORE_1_1_4'. svn path=/tags/GNOME_CORE_1_1_4/; revision=1807
Diffstat (limited to 'mail/html-stream.h')
-rw-r--r--mail/html-stream.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/mail/html-stream.h b/mail/html-stream.h
deleted file mode 100644
index ffa0f4751c..0000000000
--- a/mail/html-stream.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _HTML_STREAM_H_
-#define _HTML_STREAM_H_ 1
-
-#include <gtkhtml/gtkhtml.h>
-#include "camel/camel-stream.h"
-
-#define HTML_STREAM_TYPE (html_stream_get_type ())
-#define HTML_STREAM(obj) (GTK_CHECK_CAST((obj), HTML_STREAM_TYPE, HTMLStream))
-#define HTML_STREAM_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), HTML_STREAM_TYPE, HTMLStreamClass))
-#define IS_HTML_STREAM(o) (GTK_CHECK_TYPE((o), HTML_STREAM_TYPE))
-
-typedef struct {
- CamelStream parent_object;
- GtkHTML *gtk_html;
- GtkHTMLStreamHandle *gtk_html_stream;
-} HTMLStream;
-
-typedef struct {
- CamelStreamClass parent_class;
-} HTMLStreamClass;
-
-
-GtkType html_stream_get_type (void);
-CamelStream *html_stream_new (GtkHTML *html);
-
-#endif /* _HTML_STREAM_H_ */