[Solved] fatal error C1083: Could Not Open Unable to open include file:“stdint.h”: No such file or directory

The stdint.h file is a standard header file for C99, which is not supported by vs2008 by default, so you will definitely encounter the problem of “No such file or directory” in the process of using it.

Solution: Download stdint.h or make a copy from vs2010 and put it under Program Files (x86)\Microsoft Visual Studio 9.0\VC\include path

Read More: