X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=module_sigrokdecode.c;h=7f7e8690c82897a0a34f2e42147fc8e6dc1c3f49;hp=655c1f5a18a019f97427f2555dcb9cada55f541f;hb=bcd4e47e8cc688d2a04c6fbfde1e0a354405f769;hpb=1f2e00d140ac41a3a61888f67fc6f96c4369bea3;ds=sidebyside diff --git a/module_sigrokdecode.c b/module_sigrokdecode.c index 655c1f5..7f7e869 100644 --- a/module_sigrokdecode.c +++ b/module_sigrokdecode.c @@ -17,8 +17,8 @@ * along with this program. If not, see . */ -#include "libsigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ -#include "libsigrokdecode-internal.h" +#include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "libsigrokdecode.h" #include "config.h" /** @cond PRIVATE */ @@ -68,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;