From c63a3723e1c2e7c11a9c882827270b13a27a2fec Mon Sep 17 00:00:00 2001 From: marco Date: Thu, 2 Apr 2009 11:18:11 +0000 Subject: [PATCH] * 64-bit related fix to overlapped structure (Mantis 13443) git-svn-id: trunk@12994 - --- rtl/win/wininc/struct.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtl/win/wininc/struct.inc b/rtl/win/wininc/struct.inc index c124772888..2150f77cb8 100644 --- a/rtl/win/wininc/struct.inc +++ b/rtl/win/wininc/struct.inc @@ -5028,8 +5028,8 @@ Const POUTLINETEXTMETRIC = ^OUTLINETEXTMETRIC; OVERLAPPED = record - Internal : DWORD; - InternalHigh : DWORD; + Internal : ULONG_PTR; + InternalHigh : ULONG_PTR; Offset : DWORD; OffsetHigh : DWORD; hEvent : HANDLE;