Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 45 of file list.c.
Referenced by ME_FindItemBack(), ME_FindItemBackOrHere(), and ME_FindItemFwd().
{ switch (nTypeOrClass) { case diRunOrParagraph: return type == diRun || type == diParagraph; case diRunOrStartRow: return type == diRun || type == diStartRow; case diParagraphOrEnd: return type == diTextEnd || type == diParagraph; case diStartRowOrParagraph: return type == diStartRow || type == diParagraph; case diStartRowOrParagraphOrEnd: return type == diStartRow || type == diParagraph || type == diTextEnd; case diRunOrParagraphOrEnd: return type == diRun || type == diParagraph || type == diTextEnd; default: return type == nTypeOrClass; } }