From a735dc28ae1a5e9c8e9c52badc96af2ae5d0adc9 Mon Sep 17 00:00:00 2001 From: svenbarth Date: Fri, 8 Mar 2019 14:47:25 +0000 Subject: [PATCH] * fix for Mantis #35204: TThreadID is a DWord even on Windows 64-bit, so declare it accordingly git-svn-id: trunk@41636 - --- rtl/win/sysosh.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/win/sysosh.inc b/rtl/win/sysosh.inc index c1afebd9ea..9cdd9ba441 100644 --- a/rtl/win/sysosh.inc +++ b/rtl/win/sysosh.inc @@ -22,7 +22,7 @@ type THandle = DWord; ULONG_PTR = DWord; {$endif CPU64} - TThreadID = THandle; + TThreadID = DWord; SIZE_T = ULONG_PTR; { the fields of this record are os dependent }