1 /*
2    SANE EPSON backend
3    Copyright (C) 2001 SEIKO EPSON Corporation
4 
5    Date         Author      Reason
6    06/01/2001   N.Sasaki    New
7 
8    This file is part of the `iscan' program.
9 
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 2 of the License, or
13    (at your option) any later version.
14 
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19 
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 
24    As a special exception, the copyright holders give permission
25    to link the code of this program with the esmod library and
26    distribute linked combinations including the two.  You must obey
27    the GNU General Public License in all respects for all of the
28    code used other then esmod.
29 */
30 
31 #ifndef ___PISA_GIMP_1_0_PATCH_H
32 #define ___PISA_GIMP_1_0_PATCH_H
33 
34 #define GimpPlugInInfo GPlugInInfo
35 #define GimpParam GParam
36 #define GimpParamDef GParamDef
37 #define GimpDrawable GDrawable
38 #define GimpPixelRgn GPixelRgn
39 #define GimpRunModeType GRunModeType
40 #define GimpImageType GImageType
41 
42 #define GIMP_PDB_INT32 PARAM_INT32
43 #define GIMP_PDB_STATUS PARAM_STATUS
44 #define GIMP_PDB_CALLING_ERROR STATUS_CALLING_ERROR
45 #define GIMP_PDB_SUCCESS STATUS_SUCCESS
46 #define GIMP_RUN_INTERACTIVE RUN_INTERACTIVE
47 #define GIMP_RUN_NONINTERACTIVE RUN_NONINTERACTIVE
48 #define GIMP_RUN_WITH_LAST_VALS RUN_WITH_LAST_VALS
49 #define GIMP_EXTENSION PROC_EXTENSION
50 #define GIMP_RGB RGB
51 #define GIMP_RGB_IMAGE RGB_IMAGE
52 #define GIMP_GRAY GRAY
53 #define GIMP_GRAY_IMAGE GRAY_IMAGE
54 #define GIMP_RGBA_IMAGE RGBA_IMAGE
55 #define GIMP_NORMAL_MODE NORMAL_MODE
56 
57 #endif // ___PISA_GIMP_1_0_PATCH_H
58 
59