diff options
Diffstat (limited to 'Include/parsetok.h')
-rw-r--r-- | Include/parsetok.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Include/parsetok.h b/Include/parsetok.h index ad337bd..9bcc1f7 100644 --- a/Include/parsetok.h +++ b/Include/parsetok.h @@ -21,18 +21,18 @@ typedef struct { #define PyPARSE_YIELD_IS_KEYWORD 0x0001 #endif -extern DL_IMPORT(node *) PyParser_ParseString(char *, grammar *, int, +PyAPI_FUNC(node *) PyParser_ParseString(char *, grammar *, int, perrdetail *); -extern DL_IMPORT(node *) PyParser_ParseFile (FILE *, char *, grammar *, int, +PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, char *, grammar *, int, char *, char *, perrdetail *); -extern DL_IMPORT(node *) PyParser_ParseStringFlags(char *, grammar *, int, +PyAPI_FUNC(node *) PyParser_ParseStringFlags(char *, grammar *, int, perrdetail *, int); -extern DL_IMPORT(node *) PyParser_ParseFileFlags(FILE *, char *, grammar *, +PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, char *, grammar *, int, char *, char *, perrdetail *, int); -extern DL_IMPORT(node *) PyParser_ParseStringFlagsFilename(char *, +PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(char *, char *, grammar *, int, perrdetail *, int); |