I'm creating simple web service client in CPP. I have generated source files from WSDL with help of svcutil
ans wsutil
utilites. At the end I got web service interface header
and C
file.
When I include C file into my console application that uses precompiled header I have message:
Error 3 error C1853: 'Debug\TestLib3.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)
How to solve this problem?