mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 21:09:24 +02:00
utils: fix ppudump:
- show array symtable - support unicodestring - don't read "Last VTable idx" field in case of interface - this entry is not stored in ppu git-svn-id: trunk@16688 -
This commit is contained in:
parent
e896d94650
commit
dd921ffc9d
@ -1979,6 +1979,8 @@ begin
|
||||
writeln(space,' Range : ',getaint,' to ',getaint);
|
||||
write (space,' Options : ');
|
||||
readarraydefoptions;
|
||||
readdefinitions('symbols');
|
||||
readsymbols('symbols');
|
||||
end;
|
||||
|
||||
ibprocdef :
|
||||
@ -2076,6 +2078,12 @@ begin
|
||||
readcommondef('WideString definition',defoptions);
|
||||
writeln(space,' Length : ',getlongint);
|
||||
end;
|
||||
|
||||
ibunicodestringdef :
|
||||
begin
|
||||
readcommondef('UnicodeString definition',defoptions);
|
||||
writeln(space,' Length : ',getlongint);
|
||||
end;
|
||||
|
||||
ibansistringdef :
|
||||
begin
|
||||
@ -2143,7 +2151,6 @@ begin
|
||||
for j:=1to 16 do
|
||||
getbyte;
|
||||
writeln(space,' IID String : ',getstring);
|
||||
writeln(space,' Last VTable idx : ',getlongint);
|
||||
end;
|
||||
|
||||
l:=getlongint;
|
||||
|
Loading…
Reference in New Issue
Block a user