| 90 | } |
| 91 | |
| 92 | LPARAM SListBox::GetItemData(int nIndex) const |
| 93 | { |
| 94 | if (nIndex < 0 || nIndex >= GetCount()) |
| 95 | return 0; |
| 96 | |
| 97 | return m_arrItems[nIndex]->lParam; |
| 98 | } |
| 99 | |
| 100 | BOOL SListBox::SetItemData(int nIndex, LPARAM lParam) |
| 101 | { |
nothing calls this directly
no test coverage detected