1 /***********************************************************
2 Copyright (c) 2000, BeOpen.com.
3 Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4 Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
7 See the file "Misc/COPYRIGHT" for information on usage and
8 redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
9 ******************************************************************/
11 /* Interface for marshal.c */
19 DL_IMPORT(void) PyMarshal_WriteLongToFile(long, FILE *);
20 DL_IMPORT(void) PyMarshal_WriteShortToFile(int, FILE *);
21 DL_IMPORT(void) PyMarshal_WriteObjectToFile(PyObject
*, FILE *);
22 DL_IMPORT(PyObject
*) PyMarshal_WriteObjectToString(PyObject
*);
24 DL_IMPORT(long) PyMarshal_ReadLongFromFile(FILE *);
25 DL_IMPORT(int) PyMarshal_ReadShortFromFile(FILE *);
26 DL_IMPORT(PyObject
*) PyMarshal_ReadObjectFromFile(FILE *);
27 DL_IMPORT(PyObject
*) PyMarshal_ReadObjectFromString(char *, int);
32 #endif /* !Py_MARSHAL_H */