C99 stdint.h ヘッダーと MS Visual Studio

このヘッダーの MS バージョンは、次の場所からダウンロードできます。

https://github.com/mattn/gntp-send/blob/master/include/msinttypes/stdint.h

ポータブルなものはここにあります:

http://www.azillionmonkeys.com/qed/pstdint.h

Software Ramblings ブログに感謝します。


自分で定義してください。

#ifdef _MSC_VER

typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;

#else
#include <stdint.h>
#endif

更新:Visual Studio 2010 および Visual C++ 2010 Express どちらも stdint.h を持っています . C:\Program Files\Microsoft Visual Studio 10.0\VC\include にあります