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.