source: trunk/essentials/dev-lang/python/Include/marshal.h@ 3368

Last change on this file since 3368 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 713 bytes
Line 
1
2/* Interface for marshal.c */
3
4#ifndef Py_MARSHAL_H
5#define Py_MARSHAL_H
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10#define Py_MARSHAL_VERSION 2
11
12PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
13PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);