1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use libc::{c_void, c_char, c_int};
use object::{PyObject, PyTypeObject};
use structmember::PyMemberDef;
use methodobject::PyMethodDef;

pub type getter =
    unsafe extern "C" fn
                              (slf: *mut PyObject, closure: *mut c_void)
                              -> *mut PyObject;

pub type setter =
    unsafe extern "C" fn
                              (slf: *mut PyObject, value: *mut PyObject,
                               closure: *mut c_void) -> c_int;

#[repr(C)]
#[derive(Copy)]
pub struct PyGetSetDef {
	#[cfg(not(Py_3_7))]
    pub name: *mut c_char,
	#[cfg(Py_3_7)]
    pub name: *const c_char,
    pub get: Option<getter>,
    pub set: Option<setter>,
	#[cfg(not(Py_3_7))]
    pub doc: *mut c_char,
	#[cfg(Py_3_7)]
    pub doc: *const c_char,
    pub closure: *mut c_void,
}

impl Clone for PyGetSetDef {
    #[inline] fn clone(&self) -> PyGetSetDef { *self }
}

#[cfg_attr(windows, link(name="pythonXY"))] extern "C" {
    pub static mut PyClassMethodDescr_Type: PyTypeObject;
    pub static mut PyGetSetDescr_Type: PyTypeObject;
    pub static mut PyMemberDescr_Type: PyTypeObject;
    pub static mut PyMethodDescr_Type: PyTypeObject;
    pub static mut PyWrapperDescr_Type: PyTypeObject;
    pub static mut PyDictProxy_Type: PyTypeObject;

    pub fn PyDescr_NewMethod(arg1: *mut PyTypeObject, arg2: *mut PyMethodDef)
     -> *mut PyObject;
    pub fn PyDescr_NewClassMethod(arg1: *mut PyTypeObject,
                                  arg2: *mut PyMethodDef) -> *mut PyObject;
    pub fn PyDescr_NewMember(arg1: *mut PyTypeObject,
                             arg2: *mut PyMemberDef) -> *mut PyObject;
    pub fn PyDescr_NewGetSet(arg1: *mut PyTypeObject,
                             arg2: *mut PyGetSetDef) -> *mut PyObject;
    pub fn PyDictProxy_New(arg1: *mut PyObject) -> *mut PyObject;
    pub fn PyWrapper_New(arg1: *mut PyObject, arg2: *mut PyObject)
     -> *mut PyObject;

    pub static mut PyProperty_Type: PyTypeObject;
}