|
@@ -1975,11 +1975,12 @@ begin
|
|
|
writeln(space,' Name of Record : ',getstring);
|
|
|
write (space,' Options : ');
|
|
|
readobjectdefoptions;
|
|
|
- writeln(space,' FieldAlign : ',getbyte);
|
|
|
- writeln(space,' RecordAlign : ',getbyte);
|
|
|
- writeln(space,' PadAlign : ',getbyte);
|
|
|
- writeln(space,'UseFieldAlignment : ',getbyte);
|
|
|
- writeln(space,' DataSize : ',getaint);
|
|
|
+ writeln(space,' FieldAlign : ',shortint(getbyte));
|
|
|
+ writeln(space,' RecordAlign : ',shortint(getbyte));
|
|
|
+ writeln(space,' PadAlign : ',shortint(getbyte));
|
|
|
+ writeln(space,'UseFieldAlignment : ',shortint(getbyte));
|
|
|
+ writeln(space,' DataSize : ',getasizeint);
|
|
|
+ writeln(space,' PaddingSize : ',getword);
|
|
|
if not EndOfEntry then
|
|
|
HasMoreInfos;
|
|
|
{read the record definitions and symbols}
|
|
@@ -2013,9 +2014,10 @@ begin
|
|
|
end;
|
|
|
writeln(space,' External name : ',getstring);
|
|
|
writeln(space,' Import lib : ',getstring);
|
|
|
- writeln(space,' DataSize : ',getaint);
|
|
|
- writeln(space,' FieldAlign : ',getbyte);
|
|
|
- writeln(space,' RecordAlign : ',getbyte);
|
|
|
+ writeln(space,' DataSize : ',getasizeint);
|
|
|
+ writeln(space,' PaddingSize : ',getword);
|
|
|
+ writeln(space,' FieldAlign : ',shortint(getbyte));
|
|
|
+ writeln(space,' RecordAlign : ',shortint(getbyte));
|
|
|
writeln(space,' Vmt offset : ',getlongint);
|
|
|
write (space, ' Ancestor Class : ');
|
|
|
readderef('');
|