aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-gzip.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-05-11 03:29:57 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-05-11 03:29:57 +0800
commita4cd02dd230934271f925da4d3ef99de668cff6a (patch)
treebc41ed0d6d9307a11f3756c94b893a25219eac28 /camel/camel-mime-filter-gzip.h
parentee8a9bc3e88aaf0956591b744beafb0d6cb9a3cf (diff)
downloadgsoc2013-evolution-a4cd02dd230934271f925da4d3ef99de668cff6a.tar
gsoc2013-evolution-a4cd02dd230934271f925da4d3ef99de668cff6a.tar.gz
gsoc2013-evolution-a4cd02dd230934271f925da4d3ef99de668cff6a.tar.bz2
gsoc2013-evolution-a4cd02dd230934271f925da4d3ef99de668cff6a.tar.lz
gsoc2013-evolution-a4cd02dd230934271f925da4d3ef99de668cff6a.tar.xz
gsoc2013-evolution-a4cd02dd230934271f925da4d3ef99de668cff6a.tar.zst
gsoc2013-evolution-a4cd02dd230934271f925da4d3ef99de668cff6a.zip
New class for zipping/unzipping gzip streams.
2004-05-10 Jeffrey Stedfast <fejj@novell.com> * camel-mime-filter-gzip.[c,h]: New class for zipping/unzipping gzip streams. * camel-mime-filter-yenc.[c,h]: New class for encoding/decoding the crack known as YEncode. svn path=/trunk/; revision=25847
Diffstat (limited to 'camel/camel-mime-filter-gzip.h')
-rw-r--r--camel/camel-mime-filter-gzip.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/camel/camel-mime-filter-gzip.h b/camel/camel-mime-filter-gzip.h
new file mode 100644
index 0000000000..a8607b9174
--- /dev/null
+++ b/camel/camel-mime-filter-gzip.h
@@ -0,0 +1,72 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Authors: Jeffrey Stedfast <fejj@ximian.com>
+ *
+ * Copyright 2001-2004 Ximian, Inc. (www.ximian.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 Street #330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+
+#ifndef __CAMEL_MIME_FILTER_GZIP_H__
+#define __CAMEL_MIME_FILTER_GZIP_H__
+
+#include <camel/camel-mime-filter.h>
+
+#ifdef __cplusplus
+extern "C" {
+#pragma }
+#endif /* __cplusplus */
+
+#define CAMEL_TYPE_MIME_FILTER_GZIP (camel_mime_filter_gzip_get_type ())
+#define CAMEL_MIME_FILTER_GZIP(obj) (CAMEL_CHECK_CAST ((obj), CAMEL_TYPE_MIME_FILTER_GZIP, CamelMimeFilterGZip))
+#define CAMEL_MIME_FILTER_GZIP_CLASS(klass) (CAMEL_CHECK_CLASS_CAST ((klass), CAMEL_TYPE_MIME_FILTER_GZIP, CamelMimeFilterGZipClass))
+#define CAMEL_IS_MIME_FILTER_GZIP(obj) (CAMEL_CHECK_TYPE ((obj), CAMEL_TYPE_MIME_FILTER_GZIP))
+#define CAMEL_IS_MIME_FILTER_GZIP_CLASS(klass) (CAMEL_CHECK_CLASS_TYPE ((klass), CAMEL_TYPE_MIME_FILTER_GZIP))
+#define CAMEL_MIME_FILTER_GZIP_GET_CLASS(obj) (CAMEL_CHECK_GET_CLASS ((obj), CAMEL_TYPE_MIME_FILTER_GZIP, CamelMimeFilterGZipClass))
+
+typedef struct _CamelMimeFilterGZip CamelMimeFilterGZip;
+typedef struct _CamelMimeFilterGZipClass CamelMimeFilterGZipClass;
+
+typedef enum {
+ CAMEL_MIME_FILTER_GZIP_MODE_ZIP,
+ CAMEL_MIME_FILTER_GZIP_MODE_UNZIP
+} CamelMimeFilterGZipMode;
+
+struct _CamelMimeFilterGZip {
+ CamelMimeFilter parent_object;
+
+ struct _CamelMimeFilterGZipPrivate *priv;
+
+ CamelMimeFilterGZipMode mode;
+ int level;
+};
+
+struct _CamelMimeFilterGZipClass {
+ CamelMimeFilterClass parent_class;
+
+};
+
+
+CamelType camel_mime_filter_gzip_get_type (void);
+
+CamelMimeFilter *camel_mime_filter_gzip_new (CamelMimeFilterGZipMode mode, int level);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __CAMEL_MIME_FILTER_GZIP_H__ */