We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ca95de commit 18e7c9eCopy full SHA for 18e7c9e
include_/rcutil.h
@@ -22,6 +22,17 @@
22
- email : powturbo [_AT_] gmail [_DOT_] com
23
**/
24
// TurboRC Range Coder : include header
25
+#if defined(_MSC_VER) && (_MSC_VER < 1600)
26
+ #if !defined(_STDINT) && !defined(_MSC_STDINT_H_)
27
+typedef unsigned char uint8_t;
28
+typedef unsigned short uint16_t;
29
+typedef unsigned int uint32_t;
30
+typedef unsigned long long uint64_t;
31
+ #endif
32
+#else
33
+#include <stdint.h>
34
+#endif
35
+#include <stddef.h>
36
37
#ifdef __cplusplus
38
extern "C" {
0 commit comments