Home | History | Annotate | Download | only in Windows

Lines Matching refs:wParam

16 // LOWORD(wParam) values in WM_*UISTATE

21 // HIWORD(wParam) values in WM_*UISTATE
225 LRESULT SendMessage(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
226 { return ::SendMessage(_window, message, wParam, lParam) ;}
228 LRESULT SendMessageW(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
229 { return ::SendMessageW(_window, message, wParam, lParam) ;}
232 bool PostMessage(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
233 { return BOOLToBool(::PostMessage(_window, message, wParam, lParam)) ;}
235 LRESULT PostMessageW(UINT message, WPARAM wParam = 0, LPARAM lParam = 0)
236 { return ::PostMessageW(_window, message, wParam, lParam) ;}
273 HICON SetIcon(WPARAM sizeType, HICON icon) { return (HICON)SendMessage(WM_SETICON, sizeType, (LPARAM)icon); }