LCL: Correctly align fields of TCMHintShow, TCMHintShowPause records on 64-bit platforms. Related to issue issue .

This commit is contained in:
Maxim Ganetsky 2024-01-27 03:05:51 +03:00
parent 9ae59e2b8d
commit 77daff816e

View File

@ -1323,6 +1323,9 @@ type
// application hint stuff
TCMHintShow = record
Msg: Cardinal;
{$ifdef cpu64}
UnusedMsg: Cardinal;
{$endif}
Reserved: WPARAM;
HintInfo: PHintInfo;
Result: LRESULT;
@ -1330,7 +1333,10 @@ type
TCMHintShowPause = record
Msg: Cardinal;
WasActive: Integer;
{$ifdef cpu64}
UnusedMsg: Cardinal;
{$endif}
WasActive: PtrInt;
Pause: PInteger;
Result: LRESULT;
end;