aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-smtp.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-05-23 02:14:39 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-05-23 02:14:39 +0800
commitd88be436d908708bb62a95ee06fbf8a104c36e1d (patch)
tree83b03c790f595d4ebc4265cf3fceec2d8ee97648 /camel/camel-mime-filter-smtp.h
parent36c4f96edf9defe046fb21d1afc8b5997f49c7d8 (diff)
downloadgsoc2013-evolution-d88be436d908708bb62a95ee06fbf8a104c36e1d.tar
gsoc2013-evolution-d88be436d908708bb62a95ee06fbf8a104c36e1d.tar.gz
gsoc2013-evolution-d88be436d908708bb62a95ee06fbf8a104c36e1d.tar.bz2
gsoc2013-evolution-d88be436d908708bb62a95ee06fbf8a104c36e1d.tar.lz
gsoc2013-evolution-d88be436d908708bb62a95ee06fbf8a104c36e1d.tar.xz
gsoc2013-evolution-d88be436d908708bb62a95ee06fbf8a104c36e1d.tar.zst
gsoc2013-evolution-d88be436d908708bb62a95ee06fbf8a104c36e1d.zip
added camel-mime-filter-smtp.[c,h] and made mods to camel-mime-filter-from.c
svn path=/trunk/; revision=3163
Diffstat (limited to 'camel/camel-mime-filter-smtp.h')
-rw-r--r--camel/camel-mime-filter-smtp.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/camel/camel-mime-filter-smtp.h b/camel/camel-mime-filter-smtp.h
new file mode 100644
index 0000000000..6bfa20e9c4
--- /dev/null
+++ b/camel/camel-mime-filter-smtp.h
@@ -0,0 +1,50 @@
+/*
+ * Copyright (C) 2000 Helix Code Inc.
+ *
+ * Authors: Jeffrey Stedfast <fejj@helixcode.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ * USA
+ */
+
+#ifndef _CAMEL_MIME_FILTER_SMTP_H
+#define _CAMEL_MIME_FILTER_SMTP_H
+
+#include <gtk/gtk.h>
+#include <camel/camel-mime-filter.h>
+
+#define CAMEL_MIME_FILTER_SMTP(obj) GTK_CHECK_CAST (obj, camel_mime_filter_smtp_get_type (), CamelMimeFilterSmtp)
+#define CAMEL_MIME_FILTER_SMTP_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, camel_mime_filter_smtp_get_type (), CamelMimeFilterSmtpClass)
+#define IS_CAMEL_MIME_FILTER_SMTP(obj) GTK_CHECK_TYPE (obj, camel_mime_filter_smtp_get_type ())
+
+typedef struct _CamelMimeFilterSmtp CamelMimeFilterSmtp;
+typedef struct _CamelMimeFilterSmtpClass CamelMimeFilterSmtpClass;
+
+struct _CamelMimeFilterSmtp {
+ CamelMimeFilter parent;
+
+ struct _CamelMimeFilterSmtpPrivate *priv;
+
+ int midline; /* are we between lines? */
+};
+
+struct _CamelMimeFilterSmtpClass {
+ CamelMimeFilterClass parent_class;
+};
+
+guint camel_mime_filter_smtp_get_type (void);
+CamelMimeFilterFrom *camel_mime_filter_smtp_new (void);
+
+#endif /* ! _CAMEL_MIME_FILTER_SMTP_H */