MCPcopy Create free account
hub / github.com/cinience/RedisStudio / HandleCustomMessage

Method HandleCustomMessage

RedisStudio/RedisInfoUI.cpp:55–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53}
54
55LRESULT 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
71void RedisInfoUI::OnClick( TNotifyUI& msg )
72{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected