Raritan EMX JSON-RPC API
Usb.idl
1 
4 module usb {
5 
7  structure UsbDevice {
8  int bus;
9  int device;
10  int vendorId;
11  int productId;
12  };
13 
15  interface Usb {
16 
22  void getDevices(out vector<UsbDevice> usbDevices);
23 
24  };
25 
26 }
USB interface.
Definition: Usb.idl:15
USB Ports.
Definition: Usb.idl:4
int vendorId
Vendor ID.
Definition: Usb.idl:10
USB device information.
Definition: Usb.idl:7
int device
Device address.
Definition: Usb.idl:9
int bus
Bus number.
Definition: Usb.idl:8
int productId
Product ID.
Definition: Usb.idl:11