black_hole: add config.xsd

Ref #4419
This commit is contained in:
Martin Stein 2022-02-11 12:25:49 +01:00 committed by Norman Feske
parent ca49e94a87
commit 7945bcb353
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="config">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="event"/>
<xs:element name="capture"/>
<xs:element name="audio_in"/>
<xs:element name="audio_out"/>
</xs:choice>
</xs:complexType>
</xs:element><!-- config -->
</xs:schema>

View File

@ -1,3 +1,4 @@
TARGET = black_hole
SRC_CC = main.cc
LIBS = base
CONFIG_XSD = config.xsd