Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* q_stdint.h: include a proper stdint.h header */ #ifndef __QSTDINT_H #define __QSTDINT_H #if defined(_MSC_VER) && (_MSC_VER < 1600) /* MS Visual Studio provides stdint.h only starting with * version 2010. Even in VS2010, there is no inttypes.h.. */ #include "msinttypes/stdint.h" #else /* assume presence of a stdint.h from the SDK. */ #include <stdint.h> #endif #endif /* __QSTDINT_H */