Files
m2dev-client-src/extern/include/python/cpython/audit.h
2026-02-09 01:07:50 +01:00

9 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*);