1use crate::object::PyTypeObject;
2
3#[cfg_attr(windows, link(name = "pythonXY"))]
4extern "C" {
5 pub static mut PyEnum_Type: PyTypeObject;
6 pub static mut PyReversed_Type: PyTypeObject;
7}
8