I installed VisualStudio 2012 and worked about 2 weeks with it. But now I wanted to start a project in C ++ (usually I am a C # programmer), and I wrote simple code. After that, I wanted to compile it, and I got a lot of errors ... no standard c-header files.
What I did: I created a new Win32 project (empty project). The created code with them includes:
#include <windows.h>
#include <stdlib.h>
#include <string.h>
#include <tchar.h>
Windows.h found the rest is not. Anyone have an idea? I also looked at IncludeDirectories:
$(VCInstallDir)include
$(VCInstallDir)atlmfc\include
$(WindowsSDK_IncludePath)
That's all. Does anyone have an idea?
source
share