X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Foutput.c;h=7d2ee60a5fff8b5af57deac9632b3a75c602597b;hb=655756e01d929607f67a9d576222917c72513b4b;hp=9bda9893851576e616defa73e0163e3741963e15;hpb=e2ad47b5b0ad98fc99579d4cd9ebee7db2a03d82;p=libsigrok.git diff --git a/output/output.c b/output/output.c index 9bda9893..7d2ee60a 100644 --- a/output/output.c +++ b/output/output.c @@ -17,18 +17,22 @@ * along with this program. If not, see . */ -#include "sigrok.h" +#include -extern struct output_format output_text_binary; +extern struct output_format output_text_bits; extern struct output_format output_text_hex; +extern struct output_format output_binary; extern struct output_format output_vcd; extern struct output_format output_gnuplot; +extern struct output_format output_analog; struct output_format *output_module_list[] = { - &output_text_binary, + &output_text_bits, &output_text_hex, + &output_binary, &output_vcd, &output_gnuplot, + &output_analog, NULL, };