author | rubidium |
Fri, 04 Apr 2008 19:10:45 +0000 | |
changeset 8823 | 8311c1f91a14 |
parent 8822 | d40bd6519bae |
child 8824 | 88a1fb8afd4d |
src/stdafx.h | file | annotate | diff | comparison | revisions |
--- a/src/stdafx.h Fri Apr 04 18:55:24 2008 +0000 +++ b/src/stdafx.h Fri Apr 04 19:10:45 2008 +0000 @@ -32,8 +32,12 @@ #include <stdint.h> #endif #else - #define INT64_MAX 9223372036854775807LL + #define INT64_MAX (9223372036854775807LL) #define INT64_MIN (-INT64_MAX - 1) + #define INT32_MAX (2147483647) + #define INT32_MIN (-INT32_MAX - 1) + #define INT16_MAX (32767) + #define INT16_MIN (-INT16_MAX - 1) #endif #include <cstdio>