Clear: Empty the list

Return TypeFunction nameArguments
voidhzList::Clear(void)

Declared and defined in file: hzTmplList.h

Function Logic:

0:START 1:unknown 2:unknown 3:items 4:items 5:mx 6: No text

Function body:

void hzList::Clear (void)
   {
       //  Clear: Empty the list
       if (mx)
       {
           if (mx->m_nCopy > 0)
               mx->m_nCopy-- ;
           else
               mx->Clear() ;
       }
       mx = 0;
   }