From 73ecf37599624a98ea95bac6019d1d380eea4601 Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Wed, 8 Jan 2003 13:34:08 +0000 Subject: [PATCH] Use WIN32 64-bit type on WIN32. --- lib/silcutil/silctypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.43.0