]> sigrok.org Git - libsigrokdecode.git/blobdiff - module_sigrokdecode.c
Build: Include <config.h> first in all source files
[libsigrokdecode.git] / module_sigrokdecode.c
index 6fba05ca5a875b145d1b5d96b8221d992eeb4348..468a1cb0a7276c798a238edc1b262fc0255222b5 100644 (file)
@@ -17,9 +17,9 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "libsigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
-#include "libsigrokdecode-internal.h"
-#include "config.h"
+#include <config.h>
+#include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
+#include "libsigrokdecode.h"
 
 /** @cond PRIVATE */
 
@@ -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;