home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2002 April / pcpro0402.iso / essentials / graphics / Gimp / gimp-src-20001226.exe / src / gimp / plug-ins / gap / gap_split.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-24  |  1.4 KB  |  48 lines

  1. /* gap_lib.h
  2.  * 1997.11.01 hof (Wolfgang Hofer)
  3.  *
  4.  * GAP ... Gimp Animation Plugins
  5.  *
  6.  * Split Image to Anim Frames (seperate Images on disk)
  7.  *
  8.  */
  9. /* The GIMP -- an image manipulation program
  10.  * Copyright (C) 1995 Spencer Kimball and Peter Mattis
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  25.  */
  26.  
  27. /* revision history:
  28.  * 0.96.00; 1998/07/03   hof: 1.st releas
  29.  */
  30.  
  31. #ifndef _GAP_SPLIT_H
  32. #define _GAP_SPLIT_H
  33.  
  34. #include "libgimp/gimp.h"
  35.  
  36.  
  37.  
  38. int gap_split_image(GimpRunModeType run_mode,
  39.                              gint32     image_id,
  40.                              gint32     inverse_order,
  41.                              gint32     no_alpha,
  42.                              char      *extension);
  43.  
  44.  
  45. #endif
  46.  
  47.  
  48.