X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=output%2Foutput.c;h=7d2ee60a5fff8b5af57deac9632b3a75c602597b;hb=1437e8934bd01167f2126616c7e8b44ca342cd27;hp=63da6352a2de8d80727ee06e8d30f6804880b5b8;hpb=4c9ffa83cf5b63445a1463af18a910a8cc786e31;p=libsigrok.git diff --git a/output/output.c b/output/output.c index 63da6352..7d2ee60a 100644 --- a/output/output.c +++ b/output/output.c @@ -17,26 +17,26 @@ * 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, }; - - struct output_format **output_list(void) { - return output_module_list; } - -