X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Foutput.c;h=6f02b6806d618321f05476222a856c05fee37cd0;hb=82b9f3d116ce0c982291a2dfdd15cd8a1c4cc16e;hp=efb205c68192d8d020f590c86b04841cc9e3c886;hpb=f9c6b5cfd3c0f6cb737f6a68f69034ce6819f36d;p=libsigrok.git diff --git a/src/output/output.c b/src/output/output.c index efb205c6..6f02b680 100644 --- a/src/output/output.c +++ b/src/output/output.c @@ -64,7 +64,9 @@ 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, @@ -78,6 +80,8 @@ static const struct sr_output_module *output_module_list[] = { &output_analog, &output_srzip, &output_wav, + &output_wavedrom, + &output_null, NULL, };