Searched refs:lpPaint (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/plugins/win/
H A DPaintHooks.asm20 ;HDC __stdcall _HBeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);
35 ;BOOL __stdcall _HEndPaint(HWND hWnd, const PAINTSTRUCT* lpPaint);
H A DPluginViewWin.cpp148 extern "C" HDC __stdcall _HBeginPaint(HWND hWnd, LPPAINTSTRUCT lpPaint);
149 extern "C" BOOL __stdcall _HEndPaint(HWND hWnd, const PAINTSTRUCT* lpPaint);
152 HDC WINAPI PluginView::hookedBeginPaint(HWND hWnd, PAINTSTRUCT* lpPaint) argument
158 memset(lpPaint, 0, sizeof(PAINTSTRUCT));
159 lpPaint->hdc = pluginView->m_wmPrintHDC;
160 GetClientRect(hWnd, &lpPaint->rcPaint);
170 : "a" (beginPaintSysCall), "g" (lpPaint), "g" (hWnd), "m" (beginPaint)
177 __asm push lpPaint
181 return _HBeginPaint(hWnd, lpPaint);
185 BOOL WINAPI PluginView::hookedEndPaint(HWND hWnd, const PAINTSTRUCT* lpPaint) argument
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_edit_view_win.cc327 HDC WINAPI BeginPaintIntercept(HWND hWnd, LPPAINTSTRUCT lpPaint) { argument
329 return ::BeginPaint(hWnd, lpPaint);
331 *lpPaint = paint_struct;
336 BOOL WINAPI EndPaintIntercept(HWND hWnd, const PAINTSTRUCT* lpPaint) { argument
337 return (edit_hwnd && (hWnd == edit_hwnd)) || ::EndPaint(hWnd, lpPaint);

Completed in 233 milliseconds