Last change
on this file was 2, checked in by Yuri Dario, 15 years ago |
Initial import for vendor code.
|
-
Property svn:eol-style
set to
native
|
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
|
---|
7 | extern "C" {
|
---|
8 | #endif
|
---|
9 |
|
---|
10 | #define Py_MARSHAL_VERSION 2
|
---|
11 |
|
---|
12 | PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
|
---|
13 | PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
|
---|
14 | PyAPI_FUNC(PyObject *) PyMarshal_WriteObjectToString(PyObject *, int);
|
---|
15 |
|
---|
16 | PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
|
---|
17 | PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
|
---|
18 | PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
|
---|
19 | PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
|
---|
20 | PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromString(char *, Py_ssize_t);
|
---|
21 |
|
---|
22 | #ifdef __cplusplus
|
---|
23 | }
|
---|
24 | #endif
|
---|
25 | #endif /* !Py_MARSHAL_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.