C99 stdint.h 헤더 및 MS Visual Studio 놀랍게도 C99 stdint.h가 MS Visual Studio 2003 이상에서 발견되지 않았습니다.나름의 이유가 있겠지만, 어디서 다운로드 받을 수 있는지 아는 사람 있나요?이 헤더가 없으면 uint32_t 등의 유용한 유형에 대한 정의는 없습니다.업데이트: Visual Studio 2010 및 Visual C++ 2010 Express 모두stdint.h에 기재되어 있습니다.C:\Program Files\Microsoft Visual Studio 10.0\VC\include직접 정의해 보세요. #ifdef _MSC_VER typedef __int32 int32_t; typedef unsigned __int32 uint32_t; typed..