From: Pekka Riikonen Date: Wed, 8 Jan 2003 13:34:08 +0000 (+0000) Subject: Use WIN32 64-bit type on WIN32. X-Git-Tag: silc.client.0.9.11~1 X-Git-Url: http://git.silcnet.org/gitweb/?p=silc.git;a=commitdiff_plain;h=73ecf37599624a98ea95bac6019d1d380eea4601 Use WIN32 64-bit type on WIN32. --- diff --git a/lib/silcutil/silctypes.h b/lib/silcutil/silctypes.h index b123cea8..7d4594cf 100644 --- a/lib/silcutil/silctypes.h +++ b/lib/silcutil/silctypes.h @@ -216,8 +216,8 @@ typedef signed long SilcInt64; typedef unsigned long long SilcUInt64; typedef signed long long SilcInt64; #else -typedef SilcUInt32 SilcUInt64; /* XXX Use Windows's own 64 bit types */ -typedef SilcInt32 SilcInt64; +typedef unsigned __int64 SilcUInt64; +typedef signed __int64 SilcInt64; #endif #else typedef SilcUInt32 SilcUInt64;