| /* Interfaces to parse and execute pieces of python code */ | |
| extern "C" { | |
| PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int); | |
| PyAPI_FUNC(void) PyErr_Print(void); | |
| PyAPI_FUNC(void) PyErr_PrintEx(int); | |
| PyAPI_FUNC(void) PyErr_Display(PyObject *, PyObject *, PyObject *); | |
| /* Stuff with no proper home (yet) */ | |
| PyAPI_DATA(int) (*PyOS_InputHook)(void); | |
| /* Stack size, in "pointers" (so we get extra safety margins | |
| on 64-bit platforms). On a 32-bit platform, this translates | |
| to an 8k margin. */ | |
| /* Enable stack checking under Microsoft C */ | |
| /* Check that we aren't overflowing our stack */ | |
| PyAPI_FUNC(int) PyOS_CheckStack(void); | |
| } | |