mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-15 21:29:50 +02:00
LCL: Correctly align fields of TCMHintShow, TCMHintShowPause records on 64-bit platforms. Related to issue issue #40701.
(cherry picked from commit 77daff816e
)
This commit is contained in:
parent
bb8e0d1c4b
commit
72e1b7db40
@ -1330,6 +1330,9 @@ type
|
||||
// application hint stuff
|
||||
TCMHintShow = record
|
||||
Msg: Cardinal;
|
||||
{$ifdef cpu64}
|
||||
UnusedMsg: Cardinal;
|
||||
{$endif}
|
||||
Reserved: WPARAM;
|
||||
HintInfo: PHintInfo;
|
||||
Result: LRESULT;
|
||||
@ -1337,7 +1340,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