Table of Contents

list_Append

Description

Append the contents of one list to the end of another.

Function prototype

bool CExtAPI::list_Append(ZLIST hList, ZLIST hList2);

Arguments

Name Type Comment
hList ZLIST A handle to a list.
hList2 ZLIST A handle to the list, the contents of which are to be appended to hList.

Return value

False if an error occurred, and true otherwise.

Comments

None.