AROS: 32/64-bit RTL utility compatibility update

Update some utility RTL record structures to be 32/64-bit compatible.

Unit Utility was already up-to-date with these changes.
This commit is contained in:
magorium 2022-05-01 08:24:16 +02:00 committed by Charlie Balogh
parent 853b9c5c96
commit d78e39d360
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ type
PTagItem = ^TTagItem;
TTagItem = record
ti_Tag : Tag;
ti_Data: Cardinal;
ti_Data: PtrUInt;
end;

View File

@ -45,8 +45,8 @@ type
PHook = ^THook;
THook = record
h_MinNode : TMinNode;
h_Entry : Cardinal;
h_SubEntry: Cardinal;
h_Entry : PtrUInt;
h_SubEntry: PtrUInt;
h_Data : Pointer;
end;