/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* GMime * Copyright (C) 2000-2007 Jeffrey Stedfast * * 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef __GMIME_H__ #define __GMIME_H__ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include G_BEGIN_DECLS /* GMIME version */ extern const guint gmime_major_version; extern const guint gmime_minor_version; extern const guint gmime_micro_version; extern const guint gmime_interface_age; extern const guint gmime_binary_age; #define GMIME_CHECK_VERSION(major,minor,micro) g_mime_check_version (major, minor, micro) gboolean g_mime_check_version (guint major, guint minor, guint micro); /** * GMIME_INIT_FLAG_UTF8: * * Initialization flag to enable UTF-8 interfaces throughout GMime. * * Note: this flag is really a no-op and remains only for backward * compatablity. Interfaces will be UTF-8 whether this flag is used or * not. **/ #define GMIME_INIT_FLAG_UTF8 (1 << 0) void g_mime_init (guint32 flags); void g_mime_shutdown (void); G_END_DECLS #endif /* __GMIME_H__ */