Page 1 of 1

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

Posted: Tue 11. Feb 2020, 11:25
by Redin_NA
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?

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

Posted: Tue 11. Feb 2020, 12:30
by F.Vergnaud
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.

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

Posted: Tue 11. Feb 2020, 14:51
by Redin_NA
Thanks!
Now everything works