what library do I need for this setupapi.dll linux usb wrapper

Questions about Wine on Linux
Locked
JPT
Level 1
Level 1
Posts: 8
Joined: Tue Jul 28, 2015 2:02 am

what library do I need for this setupapi.dll linux usb wrapper

Post by JPT »

Hi,
I am trying to install this DLL https://github.com/radiomanV/TL866/blob/master/win

But it cannot load the DLL, error message is:

Code: Select all

0024:err:module:import_dll Loading library SETUPAPI.dll (which is needed by L"C:\\Program Files (x86)\\Xgpro\\Xgpro.exe") failed (error c000012f).
0024:err:module:loader_init Importing dlls for L"C:\\Program Files (x86)\\Xgpro\\Xgpro.exe" failed, status c0000135
does the include help fo find out which libraries I need?

thank you very much

Code: Select all

#include <glob.h>
#include <libudev.h>
#include <libusb-1.0/libusb.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <pthread.h>
#include <dbt.h>
#include <winbase.h>
#include <windef.h>
#include <winnt.h>
ibdave
Level 2
Level 2
Posts: 11
Joined: Mon Apr 24, 2023 7:13 pm

Re: what library do I need for this setupapi.dll linux usb wrapper

Post by ibdave »

According to that git, the dll is downloadable right there:

https://github.com/radiomanV/TL866/tree/master/wine
JPT
Level 1
Level 1
Posts: 8
Joined: Tue Jul 28, 2015 2:02 am

Re: what library do I need for this setupapi.dll linux usb wrapper

Post by JPT »

Did you even read my post?
It does not want to load the DLL and I asked for any idea how to solve that.

Sorry, there was an E lost at the end of my URL
Locked