Return the number of items in the list
| Return Type | Function name | Arguments |
|---|---|---|
| uint32_t | hzList::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;
}