diff options
author | Guido van Rossum <guido@python.org> | 1998-12-04 18:48:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-04 18:48:25 (GMT) |
commit | 43466ec7b07de6bcad016bec60839cd6079c5a9c (patch) | |
tree | ec3bf3e1dfbf9535fa56e153e200f6491f34a6b0 /Include/fileobject.h | |
parent | b241b67b8954b0679377af00d668e3dc92f4c858 (diff) | |
download | cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.zip cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.tar.gz cpython-43466ec7b07de6bcad016bec60839cd6079c5a9c.tar.bz2 |
Add DL_IMPORT(returntype) for all officially exported functions.
Diffstat (limited to 'Include/fileobject.h')
-rw-r--r-- | Include/fileobject.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h index d5e7b8c..30d3ae0 100644 --- a/Include/fileobject.h +++ b/Include/fileobject.h @@ -41,16 +41,16 @@ extern DL_IMPORT(PyTypeObject) PyFile_Type; #define PyFile_Check(op) ((op)->ob_type == &PyFile_Type) -extern PyObject *PyFile_FromString Py_PROTO((char *, char *)); -extern void PyFile_SetBufSize Py_PROTO((PyObject *, int)); -extern PyObject *PyFile_FromFile +extern DL_IMPORT(PyObject *) PyFile_FromString Py_PROTO((char *, char *)); +extern DL_IMPORT(void) PyFile_SetBufSize Py_PROTO((PyObject *, int)); +extern DL_IMPORT(PyObject *) PyFile_FromFile Py_PROTO((FILE *, char *, char *, int (*)Py_FPROTO((FILE *)))); -extern FILE *PyFile_AsFile Py_PROTO((PyObject *)); -extern PyObject *PyFile_Name Py_PROTO((PyObject *)); -extern PyObject *PyFile_GetLine Py_PROTO((PyObject *, int)); -extern int PyFile_WriteObject Py_PROTO((PyObject *, PyObject *, int)); -extern int PyFile_SoftSpace Py_PROTO((PyObject *, int)); -extern int PyFile_WriteString Py_PROTO((char *, PyObject *)); +extern DL_IMPORT(FILE *) PyFile_AsFile Py_PROTO((PyObject *)); +extern DL_IMPORT(PyObject *) PyFile_Name Py_PROTO((PyObject *)); +extern DL_IMPORT(PyObject *) PyFile_GetLine Py_PROTO((PyObject *, int)); +extern DL_IMPORT(int) PyFile_WriteObject Py_PROTO((PyObject *, PyObject *, int)); +extern DL_IMPORT(int) PyFile_SoftSpace Py_PROTO((PyObject *, int)); +extern DL_IMPORT(int) PyFile_WriteString Py_PROTO((char *, PyObject *)); #ifdef __cplusplus } |