Files
metabuilder/typthon/Include/cpython/picklebufobject.h
johndoe6345789 0e707caa56 feat: Add Typthon
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 17:10:58 +00:00

32 lines
848 B
C

/* PickleBuffer object. This is built-in for ease of use from third-party
* C extensions.
*/
#ifndef Ty_PICKLEBUFOBJECT_H
#define Ty_PICKLEBUFOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef Ty_LIMITED_API
PyAPI_DATA(TyTypeObject) PyPickleBuffer_Type;
#define PyPickleBuffer_Check(op) Ty_IS_TYPE((op), &PyPickleBuffer_Type)
/* Create a PickleBuffer redirecting to the given buffer-enabled object */
PyAPI_FUNC(TyObject *) PyPickleBuffer_FromObject(TyObject *);
/* Get the PickleBuffer's underlying view to the original object
* (NULL if released)
*/
PyAPI_FUNC(const Ty_buffer *) PyPickleBuffer_GetBuffer(TyObject *);
/* Release the PickleBuffer. Returns 0 on success, -1 on error. */
PyAPI_FUNC(int) PyPickleBuffer_Release(TyObject *);
#endif /* !Ty_LIMITED_API */
#ifdef __cplusplus
}
#endif
#endif /* !Ty_PICKLEBUFOBJECT_H */