Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
713 B

  1. /* Interface for marshal.c */
  2. #ifndef Py_MARSHAL_H
  3. #define Py_MARSHAL_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #define Py_MARSHAL_VERSION 2
  8. PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
  9. PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);
  10. PyAPI_FUNC(PyObject *) PyMarshal_WriteObjectToString(PyObject *, int);
  11. PyAPI_FUNC(long) PyMarshal_ReadLongFromFile(FILE *);
  12. PyAPI_FUNC(int) PyMarshal_ReadShortFromFile(FILE *);
  13. PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromFile(FILE *);
  14. PyAPI_FUNC(PyObject *) PyMarshal_ReadLastObjectFromFile(FILE *);
  15. PyAPI_FUNC(PyObject *) PyMarshal_ReadObjectFromString(char *, Py_ssize_t);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /* !Py_MARSHAL_H */