Skip to content
Snippets Groups Projects
Commit 50285469 authored by Dmitriy A. Gerasimov's avatar Dmitriy A. Gerasimov
Browse files

[*] Some updates

parent 5f2f2a64
No related branches found
No related tags found
1 merge request!26Support 3689
...@@ -5,10 +5,6 @@ ...@@ -5,10 +5,6 @@
#include "dap_common.h" #include "dap_common.h"
#include "dap_app_cli.h" #include "dap_app_cli.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct PyAppCli{ typedef struct PyAppCli{
PyObject_HEAD PyObject_HEAD
...@@ -24,7 +20,7 @@ static PyMethodDef AppCliMethods[] = { ...@@ -24,7 +20,7 @@ static PyMethodDef AppCliMethods[] = {
static PyTypeObject DapAppCli_dapAppCliType = { static PyTypeObject DapAppCli_dapAppCliType = {
PyVarObject_HEAD_INIT(NULL, 0) PyVarObject_HEAD_INIT(NULL, 0)
"CellFrame.AppCli", /* tp_name */ "AppCli", /* tp_name */
sizeof(PyAppCliObject), /* tp_basicsize */ sizeof(PyAppCliObject), /* tp_basicsize */
0, /* tp_itemsize */ 0, /* tp_itemsize */
0, /* tp_dealloc */ 0, /* tp_dealloc */
...@@ -74,6 +70,3 @@ static PyTypeObject DapAppCli_dapAppCliType = { ...@@ -74,6 +70,3 @@ static PyTypeObject DapAppCli_dapAppCliType = {
0, /* tp_finalize*/ 0, /* tp_finalize*/
}; };
#ifdef __cplusplus
}
#endif
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