Skip to content
Snippets Groups Projects
Commit eff9048c authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] Fix. Arrays of type PyMethodDef were made static.

parent c1c5a8a4
No related branches found
No related tags found
1 merge request!5Urgently
......@@ -10,7 +10,7 @@ typedef struct PyDapEncHttp{
PyObject *enc_http_add_proc_py(PyObject *self, PyObject *args);
PyMethodDef DapEncHttpMethods[] = {
static PyMethodDef DapEncHttpMethods[] = {
{"addProc", enc_http_add_proc_py, METH_VARARGS | METH_STATIC, ""},
{NULL, NULL, 0, NULL}
};
......
......@@ -13,7 +13,7 @@ typedef struct PyDapHttpFolder{
PyObject *dap_http_folder_add_py(PyObject *self, PyObject *args);
PyMethodDef DapHttpFolderMethods[] = {
static PyMethodDef DapHttpFolderMethods[] = {
{"add", (PyCFunction)dap_http_folder_add_py, METH_VARARGS | METH_STATIC, ""},
{NULL, NULL, 0, NULL}
};
......
......@@ -12,7 +12,7 @@ typedef struct PyDapMempool{
PyObject *dap_chain_mempool_add_proc_py(PyObject *self, PyObject *args);
PyMethodDef DapMempoolMethods[] = {
static PyMethodDef DapMempoolMethods[] = {
{NULL,NULL,0,NULL}
};
......@@ -59,4 +59,4 @@ static PyTypeObject DapMempool_DapMempoolType = {
};
#endif //_WRAPPING_DAP_MEMPOOL_
\ No newline at end of file
#endif //_WRAPPING_DAP_MEMPOOL_
......@@ -13,7 +13,7 @@ typedef struct PyDapStream{
PyObject *dap_stream_add_proc_http_py(PyObject *self, PyObject *args);
PyMethodDef DapStreamMethods[] = {
static PyMethodDef DapStreamMethods[] = {
{"addProcHttp", dap_stream_add_proc_http_py, METH_VARARGS | METH_STATIC, ""},
{NULL, NULL, 0, NULL}
};
......
......@@ -17,7 +17,7 @@ dap_enc_key_type_t dap_enc_key_type;
PyObject *dap_stream_ctl_add_proc_py(PyObject *self, PyObject *args);
int dap_stream_ctl_init_py(dap_enc_key_type_t key, uint32_t size);
PyMethodDef DapStreamCtlMethods[] = {
static PyMethodDef DapStreamCtlMethods[] = {
{"addProcHttp", dap_stream_ctl_add_proc_py, METH_VARARGS | METH_STATIC, ""},
{NULL, NULL, 0, NULL}
};
......
......@@ -11,7 +11,7 @@ typedef struct PyDapHttp{
PyObject *dap_http_new_py(PyObject *self, PyObject *args);
PyMethodDef DapHttpMethods[] = {
static PyMethodDef DapHttpMethods[] = {
{"new", dap_http_new_py, METH_VARARGS | METH_STATIC, ""},
{NULL, NULL, 0, NULL}
};
......
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