diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2002-08-12 07:21:58 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2002-08-12 07:21:58 (GMT) |
commit | 91a681debf9ffec155d0aff8a0bb5f965f592e16 (patch) | |
tree | 09f28782e3b0a24e64deddeafc9df24ac93855ca /Include/fileobject.h | |
parent | 44121a6bc9828c993932b87e442440dc4f260f3c (diff) | |
download | cpython-91a681debf9ffec155d0aff8a0bb5f965f592e16.zip cpython-91a681debf9ffec155d0aff8a0bb5f965f592e16.tar.gz cpython-91a681debf9ffec155d0aff8a0bb5f965f592e16.tar.bz2 |
Excise DL_EXPORT from Include.
Thanks to Skip Montanaro and Kalle Svensson for the patches.
Diffstat (limited to 'Include/fileobject.h')
-rw-r--r-- | Include/fileobject.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h index fd04d35..c351b4d 100644 --- a/Include/fileobject.h +++ b/Include/fileobject.h @@ -26,27 +26,27 @@ typedef struct { #endif } PyFileObject; -extern DL_IMPORT(PyTypeObject) PyFile_Type; +PyAPI_DATA(PyTypeObject) PyFile_Type; #define PyFile_Check(op) PyObject_TypeCheck(op, &PyFile_Type) #define PyFile_CheckExact(op) ((op)->ob_type == &PyFile_Type) -extern DL_IMPORT(PyObject *) PyFile_FromString(char *, char *); -extern DL_IMPORT(void) PyFile_SetBufSize(PyObject *, int); -extern DL_IMPORT(PyObject *) PyFile_FromFile(FILE *, char *, char *, +PyAPI_FUNC(PyObject *) PyFile_FromString(char *, char *); +PyAPI_FUNC(void) PyFile_SetBufSize(PyObject *, int); +PyAPI_FUNC(PyObject *) PyFile_FromFile(FILE *, char *, char *, int (*)(FILE *)); -extern DL_IMPORT(FILE *) PyFile_AsFile(PyObject *); -extern DL_IMPORT(PyObject *) PyFile_Name(PyObject *); -extern DL_IMPORT(PyObject *) PyFile_GetLine(PyObject *, int); -extern DL_IMPORT(int) PyFile_WriteObject(PyObject *, PyObject *, int); -extern DL_IMPORT(int) PyFile_SoftSpace(PyObject *, int); -extern DL_IMPORT(int) PyFile_WriteString(const char *, PyObject *); -extern DL_IMPORT(int) PyObject_AsFileDescriptor(PyObject *); +PyAPI_FUNC(FILE *) PyFile_AsFile(PyObject *); +PyAPI_FUNC(PyObject *) PyFile_Name(PyObject *); +PyAPI_FUNC(PyObject *) PyFile_GetLine(PyObject *, int); +PyAPI_FUNC(int) PyFile_WriteObject(PyObject *, PyObject *, int); +PyAPI_FUNC(int) PyFile_SoftSpace(PyObject *, int); +PyAPI_FUNC(int) PyFile_WriteString(const char *, PyObject *); +PyAPI_FUNC(int) PyObject_AsFileDescriptor(PyObject *); /* The default encoding used by the platform file system APIs If non-NULL, this is different than the default encoding for strings */ -extern DL_IMPORT(const char *) Py_FileSystemDefaultEncoding; +PyAPI_DATA(const char *) Py_FileSystemDefaultEncoding; #ifdef WITH_UNIVERSAL_NEWLINES /* Routines to replace fread() and fgets() which accept any of \r, \n |