Class around PixMap objects that allows more python-like access. By Joe Strout.
[python/dscho.git] / Include / pgenheaders.h
blob31483915e1dde6c444bf330012a42ec6a06a0a17
1 #ifndef Py_PGENHEADERS_H
2 #define Py_PGENHEADERS_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
7 /***********************************************************
8 Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
9 The Netherlands.
11 All Rights Reserved
13 Permission to use, copy, modify, and distribute this software and its
14 documentation for any purpose and without fee is hereby granted,
15 provided that the above copyright notice appear in all copies and that
16 both that copyright notice and this permission notice appear in
17 supporting documentation, and that the names of Stichting Mathematisch
18 Centrum or CWI or Corporation for National Research Initiatives or
19 CNRI not be used in advertising or publicity pertaining to
20 distribution of the software without specific, written prior
21 permission.
23 While CWI is the initial source for this software, a modified version
24 is made available by the Corporation for National Research Initiatives
25 (CNRI) at the Internet address ftp://ftp.python.org.
27 STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
28 REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
29 MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
30 CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
31 DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
32 PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
33 TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
34 PERFORMANCE OF THIS SOFTWARE.
36 ******************************************************************/
38 /* Include files and extern declarations used by most of the parser. */
40 #include "config.h"
42 /* config.h may or may not define DL_IMPORT */
43 #ifndef DL_IMPORT /* declarations for DLL import/export */
44 #define DL_IMPORT(RTYPE) RTYPE
45 #endif
47 #include <stdio.h>
48 #include <string.h>
50 #ifdef THINK_C
51 #define label label_
52 #undef label
53 #endif
55 #ifdef HAVE_STDLIB_H
56 #include <stdlib.h>
57 #endif
59 #include "myproto.h"
60 #include "mymalloc.h"
62 #include "pydebug.h"
64 #ifdef HAVE_STDARG_PROTOTYPES
65 DL_IMPORT(void) PySys_WriteStdout(const char *format, ...);
66 DL_IMPORT(void) PySys_WriteStderr(const char *format, ...);
67 #else
68 /* Better to have no prototypes at all for varargs functions in this case */
69 DL_IMPORT(void) PySys_WriteStdout();
70 DL_IMPORT(void) PySys_WriteStderr();
71 #endif
73 #define addarc _Py_addarc
74 #define addbit _Py_addbit
75 #define adddfa _Py_adddfa
76 #define addfirstsets _Py_addfirstsets
77 #define addlabel _Py_addlabel
78 #define addstate _Py_addstate
79 #define delbitset _Py_delbitset
80 #define dumptree _Py_dumptree
81 #define findlabel _Py_findlabel
82 #define mergebitset _Py_mergebitset
83 #define meta_grammar _Py_meta_grammar
84 #define newbitset _Py_newbitset
85 #define newgrammar _Py_newgrammar
86 #define pgen _Py_pgen
87 #define printgrammar _Py_printgrammar
88 #define printnonterminals _Py_printnonterminals
89 #define printtree _Py_printtree
90 #define samebitset _Py_samebitset
91 #define showtree _Py_showtree
92 #define tok_dump _Py_tok_dump
93 #define translatelabels _Py_translatelabels
95 #ifdef __cplusplus
97 #endif
98 #endif /* !Py_PGENHEADERS_H */