Skip to content
Snippets Groups Projects
Commit b5d5960c authored by Roman Khlopkov's avatar Roman Khlopkov 🔜
Browse files

[*] Build restored

parent 4fbcf7ce
No related branches found
No related tags found
No related merge requests found
......@@ -4,11 +4,12 @@ void DapChainCellObject_delete(PyDapChainCellObject* object){
dap_chain_cell_delete(object->cell);
Py_TYPE(object)->tp_free((PyObject*)object);
}
PyObject *DapChainCellObject_create(PyTypeObject *type_object, PyObject *args, PyObject *kwds){
/*PyObject *DapChainCellObject_create(PyTypeObject *type_object, PyObject *args, PyObject *kwds){
PyDapChainCellObject *obj = (PyDapChainCellObject*)PyType_GenericNew(type_object, args, kwds);
obj->cell = dap_chain_cell_create();
return (PyObject *)obj;
}
}*/
PyObject *dap_chain_cell_load_py(PyObject *self, PyObject *args){
PyObject *obj_chain;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment