Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
1.8 KiB

  1. <?xml version="1.0"?>
  2. <scpd xmlns="urn:schemas-upnp-org:service-1-0">
  3. <specVersion>
  4. <major>1</major>
  5. <minor>0</minor>
  6. </specVersion>
  7. <serviceStateTable>
  8. <stateVariable>
  9. <name>Power</name>
  10. <dataType>Boolean</dataType>
  11. <defaultValue>0</defaultValue>
  12. </stateVariable>
  13. <stateVariable>
  14. <name>Level</name>
  15. <dataType>i4</dataType>
  16. <allowedValueRange>
  17. <minimum>0</minimum>
  18. <maximum>10</maximum>
  19. <step>1</step>
  20. </allowedValueRange>
  21. <defaultValue>0</defaultValue>
  22. </stateVariable>
  23. </serviceStateTable>
  24. <actionList>
  25. <action>
  26. <name>PowerOn</name>
  27. </action>
  28. <action>
  29. <name>PowerOff</name>
  30. </action>
  31. <action>
  32. <name>SetLevel</name>
  33. <argumentList>
  34. <argument>
  35. <name>NewLevel</name>
  36. <relatedStateVariable>Level</relatedStateVariable>
  37. <direction>in</direction>
  38. </argument>
  39. </argumentList>
  40. </action>
  41. <action>
  42. <name>IncreaseLevel</name>
  43. </action>
  44. <action>
  45. <name>DecreaseLevel</name>
  46. </action>
  47. <action>
  48. <name>Test</name>
  49. <argumentList>
  50. <argument>
  51. <name>Multiplier</name>
  52. <direction>in</direction>
  53. <relatedStateVariable>Level</relatedStateVariable>
  54. </argument>
  55. <argument>
  56. <name>OldValue</name>
  57. <direction>out</direction>
  58. <relatedStateVariable>Level</relatedStateVariable>
  59. <retval/>
  60. </argument>
  61. <argument>
  62. <name>NewValue</name>
  63. <direction>out</direction>
  64. <relatedStateVariable>Level</relatedStateVariable>
  65. </argument>
  66. </argumentList>
  67. </action>
  68. </actionList>
  69. </scpd>