mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +00:00
8 lines
231 B
C
8 lines
231 B
C
#ifndef _Py_CPYTHON_AUDIT_H
|
|
# error "this header file must not be included directly"
|
|
#endif
|
|
|
|
|
|
typedef int(*Py_AuditHookFunction)(const char *, PyObject *, void *);
|
|
|
|
PyAPI_FUNC(int) PySys_AddAuditHook(Py_AuditHookFunction, void*);
|