Changeset 21953 for trunk/src/user32
- Timestamp:
- Jan 31, 2012, 10:16:33 PM (14 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/dbgwrap.cpp
r21916 r21953 146 146 LRESULT WINAPI EditWndProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ); 147 147 148 BOOL WIN32API UpdateLayeredWindow(HWND hwnd, HDC hdcDst, POINT *pptDst,SIZE *psize, 149 HDC hdcSrc, POINT *pptSrc, COLORREF crKey, BLENDFUNCTION *pblend, 150 DWORD dwFlags); 151 148 152 149 153 DEBUGWRAP12(AttachThreadInput) … … 258 262 DEBUGWRAP4(WINNLSGetIMEHotkey) 259 263 264 DEBUGWRAP36(UpdateLayeredWindow) 260 265 261 266 -
trunk/src/user32/user32.def
r21949 r21953 767 767 "_GetOS2Icon@4" @2045 NONAME 768 768 769 ; used for Flash plugin770 769 GetWindowInfo = "_GetWindowInfo@8" @2046 771 770 _HPSToHDC @2047 … … 773 772 "_RunOnAuxThread@20" @2048 NONAME 774 773 "_RunOnAuxThreadAndWait@24" @2049 NONAME 774 775 UpdateLayeredWindow = "_UpdateLayeredWindow@36" @2050 -
trunk/src/user32/user32dbg.def
r21949 r21953 763 763 "_GetOS2Icon@4" @2045 NONAME 764 764 765 ; used for Flash plugin766 765 GetWindowInfo = "_GetWindowInfo@8" @2046 767 766 _HPSToHDC @2047 … … 769 768 "_RunOnAuxThread@20" @2048 NONAME 770 769 "_RunOnAuxThreadAndWait@24" @2049 NONAME 770 771 UpdateLayeredWindow = "_DbgUpdateLayeredWindow@36" @2050 772 -
trunk/src/user32/window.cpp
r21916 r21953 467 467 468 468 return TRUE; 469 } 470 /***************************************************************************** 471 * UpdateLayeredWindow (USER32.@) 472 */ 473 BOOL WIN32API UpdateLayeredWindow(HWND hwnd, HDC hdcDst, POINT *pptDst,SIZE *psize, 474 HDC hdcSrc, POINT *pptSrc, COLORREF crKey, BLENDFUNCTION *pblend, 475 DWORD dwFlags) 476 { 477 dprintf(("USER32: UpdateLayeredWindow(%08xh, %08xh, %08xh, %08xh, %08xh, " 478 "%08xh, %08xh, %08xh, %08xh) not implemented\n", 479 hwnd, hdcDst, pptDst, psize, hdcSrc, pptSrc, crKey, pblend, dwFlags)); 480 return FALSE; 469 481 } 470 482
Note:
See TracChangeset
for help on using the changeset viewer.