summaryrefslogtreecommitdiffstats
path: root/Include/cpython/sysmodule.h
blob: e028fb7ecd52307d06160ae547d0295962b40914 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef Py_CPYTHON_SYSMODULE_H
#  error "this header file must not be included directly"
#endif

typedef int(*Py_AuditHookFunction)(const char *, PyObject *, void *);

PyAPI_FUNC(int) PySys_Audit(
    const char *event,
    const char *argFormat,
    ...);
PyAPI_FUNC(int) PySys_AddAuditHook(Py_AuditHookFunction, void*);