diff options
author | Someone Serge <else@someonex.net> | 2024-06-25 17:09:58 +0000 |
---|---|---|
committer | Someone Serge <else@someonex.net> | 2024-06-25 17:09:58 +0000 |
commit | e575e08cacd3461feae843d368fa205c85304b2c (patch) | |
tree | 16830bb2d6f8774a99864c52be47ee9abe13bed8 /src | |
parent | cc02eba1d357dde0132593649c67a194750fe37d (diff) |
evanix-py: init
Diffstat (limited to 'src')
-rw-r--r-- | src/evanix-py.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/evanix-py.c b/src/evanix-py.c new file mode 100644 index 0000000..c010e27 --- /dev/null +++ b/src/evanix-py.c @@ -0,0 +1,14 @@ +#include <Python.h> + +static PyMethodDef methods[] = { + {NULL, NULL, 0, NULL}, +}; + +static struct PyModuleDef module = { + PyModuleDef_HEAD_INIT, "evanix", NULL, -1, methods, +}; + +PyMODINIT_FUNC PyInit_evanix(void) +{ + return PyModule_Create(&module); +} |