I am going to build a client project using the UDS-CAN API using C ++ VS 2019 and add all files (PCANBaxic.dll, PCAN-ISO-IP.dll, PCAN-UDS.dll) at SysWOW64, System32 directories, then open PCAN-UDS\C++\PCUClient\PCUClient.sln, VS upgage the project. After builld VS give error:
"The program '[21144] PCUCilnet.exe' has exited with code -1073741701 (0xc000007b)"
How I can fix it?
The program '[21144] PCUCilnet.exe' has exited with code -1073741701 (0xc000007b)
-
- Software Development
- Posts: 305
- Joined: Mon 9. Sep 2013, 12:21
Re: The program '[21144] PCUCilnet.exe' has exited with code -1073741701 (0xc000007b)
You need to double check that you copied the correct architecture of the dlls in SysWOW64 and System32, on a 64 bit Windows it will be:
- System32: copy the x64 dlls,
- SystemWOW64: copy the Win32 dlls.
Alternatively you can just copy the dlls to the output directory of the VS project.
By default it will be Debug for Win32 (aka x86) and x64/Debug for x64.
- System32: copy the x64 dlls,
- SystemWOW64: copy the Win32 dlls.
Alternatively you can just copy the dlls to the output directory of the VS project.
By default it will be Debug for Win32 (aka x86) and x64/Debug for x64.
Best regards,
Fabrice
Fabrice
Re: The program '[21144] PCUCilnet.exe' has exited with code -1073741701 (0xc000007b)
Thanks!
Now everything works
Now everything works