use long for LINT for 32-bit platform

This commit is contained in:
VincentWei
2018-01-30 19:28:40 +08:00
parent 58050c7896
commit 3380dd13d6
+1 -1
View File
@@ -518,7 +518,7 @@ typedef __int64 LONG_PTR;
#elif defined(__LP64__)
typedef long LONG_PTR;
#else
typedef int LONG_PTR;
typedef long LONG_PTR;
#endif
/**