1 | <?xml version="1.0" encoding="UTF-8"?>
|
---|
2 | <!--
|
---|
3 | * :tabSize=2:indentSize=2:noTabs=true:
|
---|
4 | * :folding=explicit:collapseFolds=1:
|
---|
5 | *
|
---|
6 | * Sun VirtualBox Settings Schema Version 1.0-linux
|
---|
7 |
|
---|
8 | Copyright (C) 2004-2009 Oracle Corporation
|
---|
9 |
|
---|
10 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | available from http://www.virtualbox.org. This file is free software;
|
---|
12 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | General Public License (GPL) as published by the Free Software
|
---|
14 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | -->
|
---|
18 |
|
---|
19 | <xsd:schema
|
---|
20 | xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
---|
21 | xmlns="http://www.innotek.de/VirtualBox-settings"
|
---|
22 | xmlns:vb="http://www.innotek.de/VirtualBox-settings"
|
---|
23 | targetNamespace="http://www.innotek.de/VirtualBox-settings"
|
---|
24 | elementFormDefault="qualified"
|
---|
25 | >
|
---|
26 |
|
---|
27 | <xsd:annotation>
|
---|
28 | <xsd:documentation xml:lang="en">
|
---|
29 | Sun VirtualBox Settings Schema (linux).
|
---|
30 | Copyright (c) 2004-2009 Sun Microsystems, Inc.
|
---|
31 | </xsd:documentation>
|
---|
32 | </xsd:annotation>
|
---|
33 |
|
---|
34 | <xsd:include schemaLocation="VirtualBox-settings-common.xsd"/>
|
---|
35 |
|
---|
36 | <!--
|
---|
37 | this includes a computed VirtualBox element definition that contains
|
---|
38 | a proper 'version' attribute constraint (e.g. recent verison number
|
---|
39 | and platform suffix)
|
---|
40 | -->
|
---|
41 | <xsd:include schemaLocation="VirtualBox-settings-root.xsd"/>
|
---|
42 |
|
---|
43 | <!--
|
---|
44 | // Simple types
|
---|
45 | /////////////////////////////////////////////////////////////////////////
|
---|
46 | -->
|
---|
47 |
|
---|
48 | <!--
|
---|
49 | // Complex types
|
---|
50 | /////////////////////////////////////////////////////////////////////////
|
---|
51 | -->
|
---|
52 |
|
---|
53 | <xsd:complexType name="TAudioAdapter">
|
---|
54 | <xsd:complexContent>
|
---|
55 | <xsd:extension base="TAudioAdapterBase">
|
---|
56 | <xsd:attribute name="driver" use="required">
|
---|
57 | <xsd:simpleType>
|
---|
58 | <xsd:restriction base="xsd:token">
|
---|
59 | <xsd:enumeration value="Null"/>
|
---|
60 | <xsd:enumeration value="OSS"/>
|
---|
61 | <xsd:enumeration value="ALSA"/>
|
---|
62 | <xsd:enumeration value="Pulse"/>
|
---|
63 | </xsd:restriction>
|
---|
64 | </xsd:simpleType>
|
---|
65 | </xsd:attribute>
|
---|
66 | </xsd:extension>
|
---|
67 | </xsd:complexContent>
|
---|
68 | </xsd:complexType>
|
---|
69 |
|
---|
70 | </xsd:schema>
|
---|