Add additional definitions for `_PyImport_Frozen*`
This commit is contained in:
parent
1556845e78
commit
28dda997f9
|
@ -65,4 +65,10 @@ pub struct _frozen {
|
|||
extern "C" {
|
||||
#[cfg(not(PyPy))]
|
||||
pub static mut PyImport_FrozenModules: *const _frozen;
|
||||
#[cfg(all(not(PyPy), Py_3_11))]
|
||||
pub static mut _PyImport_FrozenBootstrap: *const _frozen;
|
||||
#[cfg(all(not(PyPy), Py_3_11))]
|
||||
pub static mut _PyImport_FrozenStdlib: *const _frozen;
|
||||
#[cfg(all(not(PyPy), Py_3_11))]
|
||||
pub static mut _PyImport_FrozenTest: *const _frozen;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue