I'm attempting to port some C source (Linux) using libusb to C# (Windows). I successfully installed LibUsbDotNet on Windows 7. Then I proceeded to add using MonoLibUsb
, since it looks like the easiest path for porting. However, when running there's an exception saying that libusb-1.0.dll
is missing. And indeed, I can't seem to find it in C:\Windows\System32
. So, two questions
- Where can I find it? Searching online hasn't revealed any handy installer packages.
- Why isn't it installed as part of LibUsbDotNet? AFAICS the lack of it makes half of LibUsbDotNet unusable.
Stumbled under the same issue one year after your post while compiling a C# program using the LibUsbDotNet library:
For anyone in a similar predicament, download the libusb library and extract the contents (you will need 7zip). Within the extracted contents, copy the
\MS32\dll\libusb-1.0.dll
into yourC:\windows\SysWOW64\
folder and copy the\MS64\dll\libusb-1.0.dll
into yourC:\windows\System32\
. Afterwards, the program ran no problem: