2006-12-09 13:33:38 -08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1999-12-14 11:38:39 -08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
|
*
|
2004-09-22 08:12:24 -07:00
|
|
|
* file-save.h
|
|
|
|
|
*
|
2009-01-17 14:28:01 -08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1999-12-14 11:38:39 -08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 14:28:01 -08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1999-12-14 11:38:39 -08:00
|
|
|
* (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
|
2018-07-11 14:47:19 -07:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1999-12-14 11:38:39 -08:00
|
|
|
*/
|
2000-12-16 13:37:03 -08:00
|
|
|
|
2001-03-30 05:31:41 -08:00
|
|
|
#ifndef __FILE_SAVE_H__
|
|
|
|
|
#define __FILE_SAVE_H__
|
1999-12-14 11:38:39 -08:00
|
|
|
|
|
|
|
|
|
2009-05-02 23:34:39 -07:00
|
|
|
GimpPDBStatusType file_save (Gimp *gimp,
|
|
|
|
|
GimpImage *image,
|
2006-04-05 01:38:33 -07:00
|
|
|
GimpProgress *progress,
|
2014-07-06 15:46:25 -07:00
|
|
|
GFile *file,
|
2006-04-05 01:38:33 -07:00
|
|
|
GimpPlugInProcedure *file_proc,
|
|
|
|
|
GimpRunMode run_mode,
|
2009-05-06 06:03:30 -07:00
|
|
|
gboolean change_saved_state,
|
2012-05-18 09:48:51 -07:00
|
|
|
gboolean export_backward,
|
|
|
|
|
gboolean export_forward,
|
2006-04-05 01:38:33 -07:00
|
|
|
GError **error);
|
2001-03-30 05:31:41 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __FILE_SAVE_H__ */
|