Return the number of items in the list

Return TypeFunction nameArguments
uint32_thzList::Count(void)

Declared and defined in file: hzTmplList.h

Function Logic:

Function body:

uint32_t hzList::Count (void)
   {
       //  Return the number of items in the list
       return mx ? mx->m_nCount : 0;
   }