JCL Help:PidlCopy
From Project JEDI Wiki
Jump to navigationJump to searchJCL Help: PidlCopy Function
Search in JCL Help
Search in all projects
Summary
Copies the item identifier list from source into destination.
Pascal
function PidlCopy(Source: PItemIdList; out Dest: PItemIdList): Boolean;
Parameters
Parameters | Description |
Source: PItemIdList | The item identifier to copy. |
out Dest: PItemIdList | The item identifier that receives a copy of Source. Note that you must eventually free this item identifier by calling PidlFree. |
Return Value
If the function succeeds then the return value is True, otherwise it is False.
Description
PidlCopy copies the item identifier list given by source into dest. If the item identifier list was successfully copied the result is True, otherwise the result is False. Note that the item identifier list given by Dest is not freed before the copy operation. Also, if Source is nil then Dest will be set to nil and the return value is False.
About
Unit
Donator
Marcel van Brakel
Contribute to this help topic
This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page