SDL  2.0
HIDDevice.java
Go to the documentation of this file.
1 package org.libsdl.app;
2 
3 interface HIDDevice
4 {
5  public int getId();
6  public int getVendorId();
7  public int getProductId();
8  public String getSerialNumber();
9  public int getVersion();
10  public String getManufacturerName();
11  public String getProductName();
12  public boolean open();
13  public int sendFeatureReport(byte[] report);
14  public int sendOutputReport(byte[] report);
15  public boolean getFeatureReport(byte[] report);
16  public void setFrozen(boolean frozen);
17  public void close();
18  public void shutdown();
19 }