I saw this peace of code m_list.SetItemState(idx, 1, FALSE) from MFC based project.
my question is what 1 and FALSE mean?
I saw that state LVIS_FOCUSED is 0x0001, so I think 1 is LVIS_FOCUSED, but why they didn't use just LVIS_FOCUSED ?
And detailed explanation about 3rd parameter (for example when it is FALSE) is not given (CListCtrl::SetItemState )