Home
last modified time | relevance | path

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

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