Allocate a tag list.
Source position: utility.pas line 343
function AllocateTagItems( |
num: LongWord |
):pTagItem; |
num |
|
The number of TagItem slots you want to allocate. |
the allocated chain of TagItem structures, or nil if there was not enough memory. An allocated tag list must eventually be freed using FreeTagItems().
Allocates the specified number of usable TagItems slots.
Note that to access the TagItems in 'tagList', you should use the function NextTagItem(). This will insure you respect any chaining (TAG_MORE) and secret hiding places (TAG_IGNORE) that this function might generate.
|
Free an allocated tag list. |
|
|
Copy a tag list. |