CListCtrlで選択されているアイテムを調べる

// CListCtrl m_ListCtrl
int iSelected = m_ListCtrl.GetNextItem( -1, LVNI_SELECTED );

if( iSelected < 0 ){
 // 選択されていない
}