jpayne@69: #ifndef Py_CPYTHON_INTERPRETERIDOBJECT_H jpayne@69: # error "this header file must not be included directly" jpayne@69: #endif jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: extern "C" { jpayne@69: #endif jpayne@69: jpayne@69: /* Interpreter ID Object */ jpayne@69: jpayne@69: PyAPI_DATA(PyTypeObject) _PyInterpreterID_Type; jpayne@69: jpayne@69: PyAPI_FUNC(PyObject *) _PyInterpreterID_New(int64_t); jpayne@69: PyAPI_FUNC(PyObject *) _PyInterpreterState_GetIDObject(PyInterpreterState *); jpayne@69: PyAPI_FUNC(PyInterpreterState *) _PyInterpreterID_LookUp(PyObject *); jpayne@69: jpayne@69: #ifdef __cplusplus jpayne@69: } jpayne@69: #endif