Commit 8f375e70 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

user32: Print a fixme only once.

parent 15446fb9
......@@ -3114,8 +3114,13 @@ BOOL WINAPI UpdateLayeredWindow( HWND hwnd, HDC hdcDst, POINT *pptDst, SIZE *psi
HDC hdcSrc, POINT *pptSrc, COLORREF crKey, BLENDFUNCTION *pblend,
DWORD dwFlags)
{
FIXME("(%p,%p,%p,%p,%p,%p,0x%08x,%p,%d): stub!\n",
hwnd, hdcDst, pptDst, psize, hdcSrc, pptSrc, crKey, pblend, dwFlags);
static int once;
if (!once)
{
once = 1;
FIXME("(%p,%p,%p,%p,%p,%p,0x%08x,%p,%d): stub!\n",
hwnd, hdcDst, pptDst, psize, hdcSrc, pptSrc, crKey, pblend, dwFlags);
}
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment