mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 21:09:24 +02:00
* converted the 'var' parameters of RAUtils.GetRecordOffsetSize to 'out',
because they are output only git-svn-id: trunk@38168 -
This commit is contained in:
parent
391f85f828
commit
85c0b3854d
@ -186,7 +186,7 @@ Function EscapeToPascal(const s:string): string;
|
||||
---------------------------------------------------------------------}
|
||||
|
||||
procedure AsmSearchSym(const s:string;var srsym:tsym;var srsymtable:TSymtable);
|
||||
Function GetRecordOffsetSize(s:string;Var Offset: tcgint;var Size:tcgint; var mangledname: string; needvmtofs: boolean; out hastypecast: boolean):boolean;
|
||||
Function GetRecordOffsetSize(s:string;out Offset: tcgint;out Size:tcgint; out mangledname: string; needvmtofs: boolean; out hastypecast: boolean):boolean;
|
||||
Function SearchType(const hs:string;var size:tcgint): Boolean;
|
||||
Function SearchRecordType(const s:string): boolean;
|
||||
Function SearchIConstant(const s:string; var l:tcgint): boolean;
|
||||
@ -1403,7 +1403,7 @@ begin
|
||||
end;
|
||||
|
||||
|
||||
Function GetRecordOffsetSize(s:string;Var Offset: tcgint;var Size:tcgint; var mangledname: string; needvmtofs: boolean; out hastypecast: boolean):boolean;
|
||||
Function GetRecordOffsetSize(s:string;out Offset: tcgint;out Size:tcgint; out mangledname: string; needvmtofs: boolean; out hastypecast: boolean):boolean;
|
||||
{ search and returns the offset and size of records/objects of the base }
|
||||
{ with field name setup in field. }
|
||||
{ returns FALSE if not found. }
|
||||
|
Loading…
Reference in New Issue
Block a user