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