Object automatically returns the TagList Pointer as expected from Amiga functions
Source position: tagsparamshelper.pas line 39
operator operator :=( |
AList: TATagList |
):PTagItem; |
With this operator override you can use the TATagList directly in the function call as parameter.
Example:
var Tags: TATagList; begin // Add Some Tags // // use the Tag List diretly as Argument to OpenWindowTagList call in= OpenWindowTagList(nil, Tags); // end;