1#ifndef Py_INTERNAL_STRUCTSEQ_H
2#define Py_INTERNAL_STRUCTSEQ_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7#ifndef Py_BUILD_CORE
8# error "this header requires Py_BUILD_CORE define"
9#endif
10
11
12PyAPI_FUNC(int) _PyStructSequence_InitType(
13 PyTypeObject *type,
14 PyStructSequence_Desc *desc,
15 unsigned long tp_flags);
16
17
18#ifdef __cplusplus
19}
20#endif
21#endif /* !Py_INTERNAL_STRUCTSEQ_H */
22