]> sigrok.org Git - libsigrok.git/blobdiff - src/output/wav.c
scpi/usbtmc: Support RL1 feature.
[libsigrok.git] / src / output / wav.c
index 6ffe905a979e5e3e9204342c2db2dfe1cfbd4cb1..fb809500c5e3b7b776c555c9fe7b9b3810cde104 100644 (file)
@@ -17,8 +17,9 @@
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#include <config.h>
 #include <string.h>
-#include "libsigrok.h"
+#include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
 #define LOG_PREFIX "output/wav"
@@ -350,11 +351,11 @@ static const struct sr_option *get_options(void)
 SR_PRIV struct sr_output_module output_wav = {
        .id = "wav",
        .name = "WAV",
-       .desc = "WAVE file format",
+       .desc = "Microsoft WAV file format",
        .exts = (const char*[]){"wav", NULL},
+       .flags = 0,
        .options = get_options,
        .init = init,
        .receive = receive,
        .cleanup = cleanup,
 };
-