home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / wcmtypes.xsd < prev    next >
Extensible Markup Language  |  2008-01-19  |  1KB  |  27 lines

  1. <?xml version="1.0" encoding="utf-8" ?>
  2.  
  3. <xs:schema elementFormDefault="qualified" 
  4.         xmlns="http://schemas.microsoft.com/WMIConfig/2002/State"
  5.         targetNamespace="http://schemas.microsoft.com/WMIConfig/2002/State"
  6.         xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
  7.         xmlns:xs="http://www.w3.org/2001/XMLSchema">
  8.     <!-- 
  9.         WSM Namespace contains the definition of common shared types 
  10.     -->       
  11.     
  12.     <!-- 
  13.         List of Strings (to represent MULTI_SZ)
  14.     -->
  15.     <xs:simpleType name="multiString" wcm:description="Use this type for a multi string setting">
  16.         <xs:list itemType="xs:string" />
  17.     </xs:simpleType>
  18.  
  19.     <!-- 
  20.         summable-int type is to be used by the Licensing team only. It's an integer type whose value can only be increased (add to the current value).
  21.     -->
  22.     <xs:simpleType name="summable-int" wcm:description="This is an incremental integer type.">
  23.         <xs:restriction base="xs:integer" /> 
  24.     </xs:simpleType>
  25.  
  26. </xs:schema>
  27.