Searched refs:DragObj_Type (Results 1 – 1 of 1) sorted by relevance
40 PyTypeObject DragObj_Type; variable42 #define DragObj_Check(x) ((x)->ob_type == &DragObj_Type || PyObject_TypeCheck((x), &DragObj_Type))57 it = PyObject_NEW(DragObjObject, &DragObj_Type); in DragObj_New()761 PyTypeObject DragObj_Type = { variable1135 DragObj_Type.ob_type = &PyType_Type; in init_Drag()1136 if (PyType_Ready(&DragObj_Type) < 0) return; in init_Drag()1137 Py_INCREF(&DragObj_Type); in init_Drag()1138 PyModule_AddObject(m, "DragObj", (PyObject *)&DragObj_Type); in init_Drag()1140 Py_INCREF(&DragObj_Type); in init_Drag()1141 PyModule_AddObject(m, "DragObjType", (PyObject *)&DragObj_Type); in init_Drag()