====== zlist_Append ====== ===== Description ===== Append the contents of one list to the end of another. ===== Files ===== ^ Declaration | ''Zeolite.h'' | ^ Implementation | ''Zeolite.cpp'' | ===== Function prototype ===== bool zlist_Append(ZLIST hList, ZLIST hList2); ===== Arguments ===== ^ 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//). | ===== Return value ===== False if an error occurred, and true otherwise. ===== Comments ===== None.