<xsd:complexType name="objectHiveType">
<xsd:annotation>
<xsd:documentation>The objectHiveType restricts a string value to a specific set of values: HKEY_CLASSES_ROOT, HKEY_CURRENT_CONFIG, HKEY_CURRENT_USER, HKEY_LOCAL_MACHINE, and HKEY_USERS. These values describe the possible hives in the registry.</xsd:documentation>
<xsd:appinfo>
<extends>system_characteristics:objectStringType</extends>
<attributes>(includes system_characteristics:objectAttributes)</attributes>
<content>string</content>
<child_elements>none</child_elements>
</xsd:appinfo>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="system_characteristics:objectStringType">
<xsd:enumeration value="HKEY_CLASSES_ROOT" />
<xsd:enumeration value="HKEY_CURRENT_CONFIG" />
<xsd:enumeration value="HKEY_CURRENT_USER" />
<xsd:enumeration value="HKEY_LOCAL_MACHINE" />
<xsd:enumeration value="HKEY_USERS" />
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
|