Home | History | Annotate | Download | only in win

Lines Matching refs:lParam

72 LRESULT CALLBACK WebInspectorProxy::InspectorViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
77 return inspectorView->wndProc(hWnd, message, wParam, lParam);
80 LPCREATESTRUCT createStruct = reinterpret_cast<LPCREATESTRUCT>(lParam);
87 return ::DefWindowProc(hWnd, message, wParam, lParam);
90 LRESULT WebInspectorProxy::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
97 lResult = onSizeEvent(hWnd, message, wParam, lParam, handled);
100 lResult = onMinMaxInfoEvent(hWnd, message, wParam, lParam, handled);
103 lResult = onSetFocusEvent(hWnd, message, wParam, lParam, handled);
106 lResult = onCloseEvent(hWnd, message, wParam, lParam, handled);
114 lResult = ::DefWindowProc(hWnd, message, wParam, lParam);
119 LRESULT WebInspectorProxy::onSizeEvent(HWND, UINT, WPARAM, LPARAM, bool&)
129 LRESULT WebInspectorProxy::onSetFocusEvent(HWND, UINT, WPARAM, LPARAM lParam, bool&)
136 LRESULT WebInspectorProxy::onMinMaxInfoEvent(HWND, UINT, WPARAM, LPARAM lParam, bool&)
138 MINMAXINFO* info = reinterpret_cast<MINMAXINFO*>(lParam);
145 LRESULT WebInspectorProxy::onCloseEvent(HWND, UINT, WPARAM, LPARAM, bool&)