The program '[21144] PCUCilnet.exe' has exited with code -1073741701 (0xc000007b)

A free API for the communication with control devices according to UDS (ISO 14229-1)
Locked
Redin_NA
Posts: 8
Joined: Mon 10. Feb 2020, 14:44

The program '[21144] PCUCilnet.exe' has exited with code -1073741701 (0xc000007b)

Post by Redin_NA » Tue 11. Feb 2020, 11:25

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?

F.Vergnaud
Software Development
Software Development
Posts: 305
Joined: Mon 9. Sep 2013, 12:21

Re: The program '[21144] PCUCilnet.exe' has exited with code -1073741701 (0xc000007b)

Post by F.Vergnaud » Tue 11. Feb 2020, 12:30

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.
Best regards,
Fabrice

Redin_NA
Posts: 8
Joined: Mon 10. Feb 2020, 14:44

Re: The program '[21144] PCUCilnet.exe' has exited with code -1073741701 (0xc000007b)

Post by Redin_NA » Tue 11. Feb 2020, 14:51

Thanks!
Now everything works

Locked