Append the contents of one list to the end of another.
| Declaration | Zeolite.h |
|---|---|
| Implementation | Zeolite.cpp |
bool zlist_Append(ZLIST hList, ZLIST hList2);
| Name | Type | Comment |
|---|---|---|
| hList | ZLIST | A handle to a list. |
| hList2 | ZLIST | A handle to a second list, the contents of which are to be appended to the first list (hList). |
False if an error occurred, and true otherwise.
None.