I'm trying to use a C based library into my C++ project. The C header files come already with
extern c {...}
The problem is as soon as I add some includes which are C++11 based (like Thread, Chrono) it won't compile anymore and start complaining about the thread.h or chrono.h files!
I have also tried putting extern C in my includes but this did not help.
The project is in Visualstudio2015.
Any help is greatly appreciated.