mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 23:19:30 +02:00
LCL: Correctly align fields of TCMHintShow, TCMHintShowPause records on 64-bit platforms. Related to issue issue #40701.
This commit is contained in:
parent
9ae59e2b8d
commit
77daff816e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user