I was googling a bit and heard that although stdint.h was not shipped with old versions of Visual Studio, it should be there in Visual Studio 2010.
However, I have this project that’s supposed to use it, but it says it can’t find either stdlib.h or stdint.h.

Why is that and how could I fix this?
Running Visual Studio 2010 with .NET 4.0 on an x86 Windows 7 machine.
stdint.his in the standard VC include directory for VS 2010:I assume by
stlib.hyou meanstdlib.h, which is also there.Also, why is
#importbeing used forstdint.hinstead of#include? I’m not sure that#importwould work, sincestdint.his a straight-up header, not a type library (though it looks like you’re in debug mode, so the build worked?).