2005-05-19 Not Zed <NotZed@Ximian.com> * em-folder-utils.h: fix rodney's name choices. fix multiple-inclusion. fix forward references. fix all callers. add many fixme's for the busted api's. * em-format-quote.c (emfq_format_clone): use pseudo mime type to find message formatter. * em-format-html-display.c (efhd_format_message): remove, it didn't do anything. * em-format-html.c (efh_format_message): make this a handler callback. * em-format.c (emf_message_rfc822): make this use the pseudo mime-type x-evolution/message/rfc822 instead of the hardcoded format_message callback. * em-format-html-display.c (efhd_message_prefix): make this use a pseudo-mime-type handler rather than hard-coded, so it can be overridden by a plugin. svn path=/trunk/; revision=29382
38 lines
1.4 KiB
C
38 lines
1.4 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* Authors: Jeffrey Stedfast <fejj@ximian.com>
|
|
* Rodney Dawes <dobey@novell.com>
|
|
*
|
|
* Copyright 2003-2005 Novell, Inc. (www.novell.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 _EM_FOLDER_UTILS_H
|
|
#define _EM_FOLDER_UTILS_H
|
|
|
|
/* FIXME: These api's are really busted, there is no consistency and most rely on the wrong data */
|
|
|
|
void em_folder_utils_copy_folder (struct _CamelFolderInfo *folderinfo);
|
|
void em_folder_utils_move_folder (struct _CamelFolderInfo *folderinfo);
|
|
|
|
void em_folder_utils_delete_folder (struct _CamelFolder *folder);
|
|
void em_folder_utils_rename_folder (struct _CamelFolder *folder);
|
|
|
|
void em_folder_utils_create_folder (struct _CamelFolderInfo *folderinfo);
|
|
|
|
#endif
|