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