| 352 | } |
| 353 | |
| 354 | int Rebar::Update(int id, REBARBANDINFO * rBand) { |
| 355 | int index = (int)SendMessage(m_hwnd, RB_IDTOINDEX, (WPARAM)id, 0); |
| 356 | ::SendMessage(m_hwnd, RB_SETBANDINFO, (WPARAM)index, (LPARAM)rBand); |
| 357 | |
| 358 | return 0; |
| 359 | } |
| 360 | |
| 361 | int Rebar::RemoveBand(int id) { |
| 362 | int index = (int)SendMessage(m_hwnd, RB_IDTOINDEX, (WPARAM)id, 0); |
nothing calls this directly
no outgoing calls
no test coverage detected