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 f963b46 commit 9bcf567Copy full SHA for 9bcf567
lib/Jsrt/ChakraDebug.h
@@ -22,13 +22,10 @@
22
23
#include "ChakraCommon.h"
24
25
-#if (!defined(_WIN32) || !defined(_MSC_VER)) && !defined(__MSTYPES_DEFINED)
26
-typedef uint32_t UINT32;
27
-typedef int64_t INT64;
28
-typedef void* HANDLE;
29
-typedef unsigned char BYTE;
30
-typedef UINT32 DWORD;
+#ifdef _WIN32
+typedef __int64 int64_t;
31
#endif
+//Other platforms should include <stdint.h> and have this defined automatically
32
33
/// <summary>
34
/// Debug events reported from ChakraCore engine.
0 commit comments