mercurial/util.h
changeset 17616 9535a0dc41f2
parent 16629 1435866c1937
child 19723 7999f4fa155a
equal deleted inserted replaced
17615:9e2dc0d292cd 17616:9535a0dc41f2
   119 
   119 
   120 #ifdef _WIN32
   120 #ifdef _WIN32
   121 #ifdef _MSC_VER
   121 #ifdef _MSC_VER
   122 /* msvc 6.0 has problems */
   122 /* msvc 6.0 has problems */
   123 #define inline __inline
   123 #define inline __inline
       
   124 typedef unsigned char uint8_t;
   124 typedef unsigned long uint32_t;
   125 typedef unsigned long uint32_t;
   125 typedef unsigned __int64 uint64_t;
   126 typedef unsigned __int64 uint64_t;
   126 #else
   127 #else
   127 #include <stdint.h>
   128 #include <stdint.h>
   128 #endif
   129 #endif