This commit is contained in:
ehouse 2004-09-29 00:59:48 +00:00
parent 6acb9014a6
commit 14b414586e

View file

@ -361,11 +361,13 @@ DictListFree( MPFORMAL PalmDictList* dl )
XP_U16
DictListCount( PalmDictList* dl )
{
XP_U16 result;
if ( !dl ) {
return 0;
result = 0;
} else {
return dl->nDicts;
result = dl->nDicts;
}
return result;
} /* dictListCount */
#ifdef NODE_CAN_4