Back to project page USBIPServerForAndroid.
The source code is released under:
GNU General Public License
If you think the Android project USBIPServerForAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.cgutman.usbip.errno; /* w w w .j av a2 s .c om*/ public class Errno { static { System.loadLibrary("errno"); } // This is a really nasty hack to try to grab the error // from a USB API request. It may return an undefined result // if say the GC runs before this gets called. public static native int getErrno(); }