]> sigrok.org Git - libsigrokdecode.git/blobdiff - module_sigrokdecode.c
Drop obsolete report() method.
[libsigrokdecode.git] / module_sigrokdecode.c
index f88a6e97de654ca9a3f3c9f08bca0c99d74af1be..d5172d6febf5823dd22503c6c73604b3cfaa606e 100644 (file)
@@ -45,7 +45,6 @@ static struct PyModuleDef sigrokdecode_module = {
 };
 
 /** @cond PRIVATE */
-/* FIXME: SRD_PRIV causes issues on MinGW. Investigate. */
 PyMODINIT_FUNC PyInit_sigrokdecode(void)
 {
        PyObject *mod;
@@ -69,14 +68,17 @@ PyMODINIT_FUNC PyInit_sigrokdecode(void)
            (PyObject *)&srd_logic_type) == -1)
                return NULL;
 
-       /* expose output types as symbols in the sigrokdecode module */
+       /* Expose output types as symbols in the sigrokdecode module */
        if (PyModule_AddIntConstant(mod, "OUTPUT_ANN", SRD_OUTPUT_ANN) == -1)
                return NULL;
-       if (PyModule_AddIntConstant(mod, "OUTPUT_PROTO",
-           SRD_OUTPUT_PROTO) == -1)
+       if (PyModule_AddIntConstant(mod, "OUTPUT_PYTHON", SRD_OUTPUT_PYTHON) == -1)
                return NULL;
-       if (PyModule_AddIntConstant(mod, "OUTPUT_BINARY",
-           SRD_OUTPUT_BINARY) == -1)
+       if (PyModule_AddIntConstant(mod, "OUTPUT_BINARY", SRD_OUTPUT_BINARY) == -1)
+               return NULL;
+       if (PyModule_AddIntConstant(mod, "OUTPUT_META", SRD_OUTPUT_META) == -1)
+               return NULL;
+       /* Expose meta input symbols. */
+       if (PyModule_AddIntConstant(mod, "SRD_CONF_SAMPLERATE", SRD_CONF_SAMPLERATE) == -1)
                return NULL;
 
        mod_sigrokdecode = mod;