2019-12-07 19:43:45 -07:00
|
|
|
#ifndef __EP_UTIL_H_INCLUDED
|
|
|
|
#define __EP_UTIL_H_INCLUDED
|
|
|
|
|
|
|
|
#define PY_SSIZE_T_CLEAN
|
|
|
|
#include <Python.h>
|
|
|
|
#include "wintype.h"
|
|
|
|
|
2019-12-09 12:28:28 -07:00
|
|
|
typedef struct tagREGCONSTANT {
|
|
|
|
CHAR regtype;
|
|
|
|
PCSTR name;
|
|
|
|
union {
|
|
|
|
LONG ival;
|
|
|
|
PCSTR sval;
|
|
|
|
} value;
|
|
|
|
} REGCONSTANT, *PREGCONSTANT;
|
|
|
|
|
|
|
|
typedef const REGCONSTANT *PCREGCONSTANT;
|
|
|
|
|
2019-12-07 19:43:45 -07:00
|
|
|
extern void Epython_log_object(int level, const char *label, PyObject *object);
|
|
|
|
extern HRESULT Epython_trace_exception(void);
|
2019-12-09 12:28:28 -07:00
|
|
|
extern HRESULT Epython_register_constants(PyObject *module, PCREGCONSTANT const_table);
|
|
|
|
|
|
|
|
#define BEGIN_CONSTANT_TABLE(name) static const REGCONSTANT name[] = {
|
|
|
|
#define CONSTANT_INT(name, value) { 'i', name, { .ival = value } },
|
|
|
|
#define CONSTANT_INT_MACRO(mac) CONSTANT_INT(#mac, mac)
|
|
|
|
#define CONSTANT_STRING(name, value) { 's', name, { .sval = value } },
|
|
|
|
#define CONSTANT_STRING_MACRO(mac) CONSTANT_STRING(#mac, mac)
|
|
|
|
#define END_CONSTANT_TABLE { 0, NULL, { .sval = NULL } } };
|
2019-12-07 19:43:45 -07:00
|
|
|
|
|
|
|
#endif /* __EP_UTIL_H_INCLUDED */
|