1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ 2 /* GMime 3 * Copyright (C) 2000-2014 Jeffrey Stedfast 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Lesser General Public License 7 * as published by the Free Software Foundation; either version 2.1 8 * of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public 16 * License along with this library; if not, write to the Free 17 * Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 18 * 02110-1301, USA. 19 */ 20 21 22 #ifndef __GMIME_STREAM_FILE_H__ 23 #define __GMIME_STREAM_FILE_H__ 24 25 #include <glib.h> 26 #include <stdio.h> 27 #include <gmime/gmime-stream.h> 28 29 G_BEGIN_DECLS 30 31 #define GMIME_TYPE_STREAM_FILE (g_mime_stream_file_get_type ()) 32 #define GMIME_STREAM_FILE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMIME_TYPE_STREAM_FILE, GMimeStreamFile)) 33 #define GMIME_STREAM_FILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMIME_TYPE_STREAM_FILE, GMimeStreamFileClass)) 34 #define GMIME_IS_STREAM_FILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMIME_TYPE_STREAM_FILE)) 35 #define GMIME_IS_STREAM_FILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GMIME_TYPE_STREAM_FILE)) 36 #define GMIME_STREAM_FILE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMIME_TYPE_STREAM_FILE, GMimeStreamFileClass)) 37 38 typedef struct _GMimeStreamFile GMimeStreamFile; 39 typedef struct _GMimeStreamFileClass GMimeStreamFileClass; 40 41 /** 42 * GMimeStreamFile: 43 * @parent_object: parent #GMimeStream 44 * @owner: %TRUE if this stream owns @fd 45 * @fp: standard-c FILE pointer 46 * 47 * A #GMimeStream wrapper around standard-c FILE pointers. 48 **/ 49 struct _GMimeStreamFile { 50 GMimeStream parent_object; 51 52 gboolean owner; 53 FILE *fp; 54 }; 55 56 struct _GMimeStreamFileClass { 57 GMimeStreamClass parent_class; 58 59 }; 60 61 62 GType g_mime_stream_file_get_type (void); 63 64 GMimeStream *g_mime_stream_file_new (FILE *fp); 65 GMimeStream *g_mime_stream_file_new_with_bounds (FILE *fp, gint64 start, gint64 end); 66 67 GMimeStream *g_mime_stream_file_new_for_path (const char *path, const char *mode); 68 69 gboolean g_mime_stream_file_get_owner (GMimeStreamFile *stream); 70 void g_mime_stream_file_set_owner (GMimeStreamFile *stream, gboolean owner); 71 72 G_END_DECLS 73 74 #endif /* __GMIME_STREAM_FILE_H__ */ 75