X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=module_sigrokdecode.c;h=d5172d6febf5823dd22503c6c73604b3cfaa606e;hp=6fba05ca5a875b145d1b5d96b8221d992eeb4348;hb=4d2c7619ec72728dd01999f20ef1004e018d18a4;hpb=ed41649709abc02362df526cbd725775000e8199 diff --git a/module_sigrokdecode.c b/module_sigrokdecode.c index 6fba05c..d5172d6 100644 --- a/module_sigrokdecode.c +++ b/module_sigrokdecode.c @@ -68,17 +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, "SRD_CONF_SAMPLERATE", - SRD_CONF_SAMPLERATE) == -1) + 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;