Re: [Libusbx-devel] How to unload libusbx dll?

2012-11-14 Thread Peter Stuge
therau2000 wrote: > > > libusb-1.0.dll is getting loaded by the interface class with the > > > following command: > > > MyLib libUSB = (MyLib) Native.loadLibrary("usb-1.0", MyLib.class); > > > > I don't even know what programming language that is? :\ > > Fair enough. It is Java. Ok. I googled:

Re: [Libusbx-devel] How to unload libusbx dll?

2012-11-14 Thread therau2000
On Thu, 2012-11-15 at 04:32 +0100, Peter Stuge wrote: > therau2000 wrote: > > libusb-1.0.dll is getting loaded by the interface class with the > > following command: > > MyLib libUSB = (MyLib) Native.loadLibrary("usb-1.0", MyLib.class); > > I don't even know what programming language that is? :\

Re: [Libusbx-devel] How to unload libusbx dll?

2012-11-14 Thread Peter Stuge
therau2000 wrote: > libusb-1.0.dll is getting loaded by the interface class with the > following command: > MyLib libUSB = (MyLib) Native.loadLibrary("usb-1.0", MyLib.class); I don't even know what programming language that is? :\ > I need to unload libusb-1.0.dll to load another one. > > Quest

[Libusbx-devel] How to unload libusbx dll?

2012-11-14 Thread therau2000
libusb-1.0.dll is getting loaded by the interface class with the following command: MyLib libUSB = (MyLib) Native.loadLibrary("usb-1.0", MyLib.class); I need to unload libusb-1.0.dll to load another one. Question: How can I unload libusb-1.0.dll while keeping my program running?