mirror of
https://github.com/johndoe6345789/typthon.git
synced 2026-04-25 06:05:05 +00:00
Massive automated renaming of all Py_/PyObject/etc. prefixes to Ty_/TyObject/etc. This includes: - All public API types (TyObject, TyTypeObject, etc.) - All public API functions (Ty_Initialize, Ty_BuildValue, etc.) - All internal API (_Ty_ prefixes) - Reference counting macros (Ty_INCREF, Ty_DECREF, etc.) - Type flags (Ty_TPFLAGS_*) - Debug flags (Ty_DEBUG, Ty_TRACE_REFS, etc.) - All object type APIs (TyList_, TyDict_, TyUnicode_, etc.) This changes over 60,000 occurrences across 1000+ files. Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
32 lines
848 B
C
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 */
|