Louis Lenders : user32: Added stub for UpdateLayeredWindow.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jan 23 14:48:07 CST 2006


Module: wine
Branch: refs/heads/master
Commit: d782abff6bab83f3e68d1f8078e1d5edf1c1bc37
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=d782abff6bab83f3e68d1f8078e1d5edf1c1bc37

Author: Louis Lenders <xerox_xerox2000 at yahoo.co.uk>
Date:   Mon Jan 23 20:12:52 2006 +0100

user32: Added stub for UpdateLayeredWindow.

---

 dlls/user/user32.spec |    2 +-
 dlls/user/win.c       |   12 ++++++++++++
 2 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/dlls/user/user32.spec b/dlls/user/user32.spec
index 450d057..e373712 100644
--- a/dlls/user/user32.spec
+++ b/dlls/user/user32.spec
@@ -717,7 +717,7 @@
 @ stdcall UnregisterHotKey(long long)
 # @ stub UnregisterMessagePumpHook
 # @ stub UnregisterUserApiHook
-# @ stub UpdateLayeredWindow
+@ stdcall UpdateLayeredWindow(long long ptr ptr long ptr long ptr long)
 @ stub UpdatePerUserSystemParameters
 @ stdcall UpdateWindow(long)
 @ stdcall User32InitializeImmEntryTable(ptr)
diff --git a/dlls/user/win.c b/dlls/user/win.c
index 4dd37eb..2f26cd7 100644
--- a/dlls/user/win.c
+++ b/dlls/user/win.c
@@ -3077,3 +3077,15 @@ BOOL WINAPI SetLayeredWindowAttributes( 
     FIXME("(%p,0x%.8lx,%d,%ld): stub!\n", hWnd, rgbKey, bAlpha, dwFlags);
     return TRUE;
 }
+
+/*****************************************************************************
+ *              UpdateLayeredWindow (USER32.@)
+ */
+BOOL WINAPI UpdateLayeredWindow( HWND hwnd, HDC hdcDst, POINT *pptDst, SIZE *psize,
+                                 HDC hdcSrc, POINT *pptSrc, COLORREF crKey, BLENDFUNCTION *pblend,
+                                 DWORD dwFlags)
+{
+    FIXME("(%p,%p,%p,%p,%p,%p,0x%08lx,%p,%ld): stub!\n",
+          hwnd, hdcDst, pptDst, psize, hdcSrc, pptSrc, crKey, pblend, dwFlags);
+    return 0;
+}




More information about the wine-cvs mailing list