| 36 | } |
| 37 | |
| 38 | void Frontend_Win32::OnAddMessage(Snowflake channelID, const Message& msg) |
| 39 | { |
| 40 | AddMessageParams parms; |
| 41 | parms.channel = channelID; |
| 42 | parms.msg = msg; |
| 43 | SendMessage(g_Hwnd, WM_ADDMESSAGE, 0, (LPARAM)&parms); |
| 44 | } |
| 45 | |
| 46 | void Frontend_Win32::OnUpdateMessage(Snowflake channelID, const Message& msg) |
| 47 | { |
no outgoing calls
no test coverage detected