1 /*
2  * cups - Python bindings for CUPS
3  * Copyright (C) 2002-2020  Tim Waugh <twaugh@redhat.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  */
19 
20 #ifndef HAVE_CUPSPPD_H
21 #define HAVE_CUPSPPD_H
22 
23 #include <Python.h>
24 #include <cups/ppd.h>
25 #include <iconv.h>
26 
27 extern PyMethodDef PPD_methods[];
28 extern PyTypeObject cups_PPDType;
29 extern PyTypeObject cups_OptionType;
30 extern PyTypeObject cups_GroupType;
31 extern PyTypeObject cups_ConstraintType;
32 extern PyTypeObject cups_AttributeType;
33 
34 typedef struct
35 {
36   PyObject_HEAD
37   ppd_file_t *ppd;
38   FILE *file;
39   iconv_t *conv_from;
40   iconv_t *conv_to;
41 } PPD;
42 
43 extern PyObject *PPD_writeFd (PPD *self, PyObject *args);
44 
45 #endif /* HAVE_CUPSPPD_H */
46