A list of disks and the type on your computer

Return a json object where you have a node with "drives" in a array. The array consists of objects with name, type and typeid

- name | the name of the drive Ex. C:\

- type | can be nodisk=1, removable=2, fixed=3, remove=4, cdrom=5, ramdisk=6 and unknown for any other

-typeid | integer with the id from window SDK

Ex. strres := DEOS("@GetDefinition", "listdrives")

{
 "drives":
  [
   {"name":"C:\\","type":"fixed","typeid":3},
   {"name":"E:\\","type":"fixed","typeid":3}
  ],
 "result":"ok"
}

Example with two hard drives, no DVD or network drives