Skip to content
Snippets Groups Projects
Commit 8a4dc0fe authored by Alexey Stratulat's avatar Alexey Stratulat
Browse files

[*] Fix. Added directive to the compiler, compile the source file as C language.

parent 26b47a3a
No related branches found
No related tags found
1 merge request!1Features 2392
#include "Python.h"
#include "dap_events.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct PyDapEvents{
PyObject_HEAD
dap_events_t *t_events;
......@@ -43,3 +47,6 @@ PyObject *dap_events_kill_socket_py(PyObject *self, PyObject *args); //dap_event
PyObject *dap_events_start_py(PyObject *self, PyObject *args); //dap_events_t *sh );
PyObject *dap_events_wait_py(PyObject *self, PyObject *args); //dap_events_t *sh );
#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