/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Include/internal/pycore_audit.h
35 строк
738 B
Eric Snow
gh-125604: Move _Py_AuditHookEntry, etc. Out of pycore_runtime.h (gh-125605)
18 окт 2024, 18:26
Не верифицирован
18 окт 2024, 18:26
6d93690
Код
Авторство
О чём код?
#ifndef Py_INTERNAL_AUDIT_H #define Py_INTERNAL_AUDIT_H #ifdef __cplusplus extern "C" { #endif #ifndef Py_BUILD_CORE # error "this header requires Py_BUILD_CORE define" #endif /* Runtime audit hook state */ typedef struct _Py_AuditHookEntry { struct _Py_AuditHookEntry *next; Py_AuditHookFunction hookCFunction; void *userData; } _Py_AuditHookEntry; extern int _PySys_Audit( PyThreadState *tstate, const char *event, const char *argFormat, ...); // _PySys_ClearAuditHooks() must not be exported: use extern rather than // PyAPI_FUNC(). We want minimal exposure of this function. extern void _PySys_ClearAuditHooks(PyThreadState *tstate); #ifdef __cplusplus } #endif #endif /* !Py_INTERNAL_AUDIT_H */