Home | History | Annotate | Download | only in win

Lines Matching refs:lParam

38 static IntPoint positionForEvent(HWND hWnd, LPARAM lParam)
40 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
44 static IntPoint globalPositionForEvent(HWND hWnd, LPARAM lParam)
46 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
80 PlatformMouseEvent::PlatformMouseEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, bool didActivateWebView)
81 : m_position(positionForEvent(hWnd, lParam))
82 , m_globalPosition(globalPositionForEvent(hWnd, lParam))