##// END OF EJS Templates
sha1dc: avoid including the nonexistent stdint.h with Visual Studio 2008...
Matt Harbison -
r44558:b4420cea default
parent child Browse files
Show More
@@ -25,8 +25,10 b''
25 */
25 */
26
26
27 #ifndef SHA1DC_NO_STANDARD_INCLUDES
27 #ifndef SHA1DC_NO_STANDARD_INCLUDES
28 #if !defined(_MSC_VER) || _MSC_VER >= 1600
28 #include <stdint.h>
29 #include <stdint.h>
29 #endif
30 #endif
31 #endif
30 #ifdef SHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C
32 #ifdef SHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C
31 #include SHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C
33 #include SHA1DC_CUSTOM_INCLUDE_UBC_CHECK_C
32 #endif
34 #endif
@@ -28,7 +28,12 b' extern "C" {'
28 #endif
28 #endif
29
29
30 #ifndef SHA1DC_NO_STANDARD_INCLUDES
30 #ifndef SHA1DC_NO_STANDARD_INCLUDES
31 #if !defined(_MSC_VER) || _MSC_VER >= 1600
31 #include <stdint.h>
32 #include <stdint.h>
33 #else
34 /* prior to Visual Studio 2010 */
35 typedef unsigned __int32 uint32_t;
36 #endif
32 #endif
37 #endif
33
38
34 #define DVMASKSIZE 1
39 #define DVMASKSIZE 1
General Comments 0
You need to be logged in to leave comments. Login now