add uint32 typedef
This commit is contained in:
parent
1dfae602a6
commit
196c91703c
|
@ -11,14 +11,20 @@ extern "C" {
|
||||||
|
|
||||||
#if defined(WIN32)
|
#if defined(WIN32)
|
||||||
|
|
||||||
|
typedef unsigned __int32 sigar_uint32_t;
|
||||||
|
|
||||||
typedef unsigned __int64 sigar_uint64_t;
|
typedef unsigned __int64 sigar_uint64_t;
|
||||||
|
|
||||||
#elif ULONG_MAX > 4294967295UL
|
#elif ULONG_MAX > 4294967295UL
|
||||||
|
|
||||||
|
typedef unsigned int sigar_uint32_t;
|
||||||
|
|
||||||
typedef unsigned long sigar_uint64_t;
|
typedef unsigned long sigar_uint64_t;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
typedef unsigned int sigar_uint32_t;
|
||||||
|
|
||||||
typedef unsigned long long sigar_uint64_t;
|
typedef unsigned long long sigar_uint64_t;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue