12 lines
287 B
C
12 lines
287 B
C
|
#ifndef __EP_UTIL_H_INCLUDED
|
||
|
#define __EP_UTIL_H_INCLUDED
|
||
|
|
||
|
#define PY_SSIZE_T_CLEAN
|
||
|
#include <Python.h>
|
||
|
#include "wintype.h"
|
||
|
|
||
|
extern void Epython_log_object(int level, const char *label, PyObject *object);
|
||
|
extern HRESULT Epython_trace_exception(void);
|
||
|
|
||
|
#endif /* __EP_UTIL_H_INCLUDED */
|