spell_mark
TTextView::spell_mark *
TTextView::FindSpellMark(int32 start, int32 end, spell_mark **_previousMark)
spell_mark *lastMark = NULL;
for (spell_mark *spellMark = fFirstSpellMark; spellMark; spellMark = spellMark->next) {
spell_mark *spellMark;
spell_mark *spellMark = FindSpellMark(start, end);
spellMark = (spell_mark *)malloc(sizeof(spell_mark));
spell_mark *lastMark = NULL;
spell_mark *spellMark = FindSpellMark(start, end, &lastMark);
spell_mark *spellMark, *nextMark;
struct spell_mark;
spell_mark *FindSpellMark(int32 start, int32 end, spell_mark **_previousMark = NULL);
spell_mark *next;
spell_mark *fFirstSpellMark;