| 53 | } |
| 54 | |
| 55 | LRESULT RedisInfoUI::HandleCustomMessage( UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled ) |
| 56 | { |
| 57 | bHandled = TRUE; |
| 58 | LRESULT lRes = TRUE; |
| 59 | switch(uMsg) |
| 60 | { |
| 61 | case WM_USER_INFOUPDATE: lRes = OnInfoRefresh(GetHWND(), wParam, lParam); |
| 62 | break; |
| 63 | default: |
| 64 | lRes = FALSE; |
| 65 | bHandled= FALSE; |
| 66 | break; |
| 67 | } |
| 68 | return lRes; |
| 69 | } |
| 70 | |
| 71 | void RedisInfoUI::OnClick( TNotifyUI& msg ) |
| 72 | { |
nothing calls this directly
no outgoing calls
no test coverage detected