]> sigrok.org Git - libsigrok.git/blobdiff - src/output/output.c
Doxygen: Properly mark a few symbols as private.
[libsigrok.git] / src / output / output.c
index 5d76b1cf930f6b0ebff121675034a1b0cb548153..6f02b6806d618321f05476222a856c05fee37cd0 100644 (file)
@@ -38,7 +38,7 @@
  * Output module handling.
  *
  * libsigrok supports several output modules for file formats such as binary,
- * VCD, gnuplot, and so on. It provides an output API that frontends can use.
+ * VCD, csv, and so on. It provides an output API that frontends can use.
  * New output modules can be added/implemented in libsigrok without having
  * to change the frontends at all.
  *
@@ -59,20 +59,20 @@ extern SR_PRIV struct sr_output_module output_ascii;
 extern SR_PRIV struct sr_output_module output_binary;
 extern SR_PRIV struct sr_output_module output_vcd;
 extern SR_PRIV struct sr_output_module output_ols;
-extern SR_PRIV struct sr_output_module output_gnuplot;
 extern SR_PRIV struct sr_output_module output_chronovu_la8;
 extern SR_PRIV struct sr_output_module output_csv;
 extern SR_PRIV struct sr_output_module output_analog;
 extern SR_PRIV struct sr_output_module output_srzip;
 extern SR_PRIV struct sr_output_module output_wav;
-/* @endcond */
+extern SR_PRIV struct sr_output_module output_wavedrom;
+extern SR_PRIV struct sr_output_module output_null;
+/** @endcond */
 
 static const struct sr_output_module *output_module_list[] = {
        &output_ascii,
        &output_binary,
        &output_bits,
        &output_csv,
-       &output_gnuplot,
        &output_hex,
        &output_ols,
        &output_vcd,
@@ -80,6 +80,8 @@ static const struct sr_output_module *output_module_list[] = {
        &output_analog,
        &output_srzip,
        &output_wav,
+       &output_wavedrom,
+       &output_null,
        NULL,
 };