Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d782abff
Commit
d782abff
authored
Jan 23, 2006
by
Louis Lenders
Committed by
Alexandre Julliard
Jan 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Added stub for UpdateLayeredWindow.
parent
2dacd3c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
user32.spec
dlls/user/user32.spec
+1
-1
win.c
dlls/user/win.c
+12
-0
No files found.
dlls/user/user32.spec
View file @
d782abff
...
@@ -717,7 +717,7 @@
...
@@ -717,7 +717,7 @@
@ stdcall UnregisterHotKey(long long)
@ stdcall UnregisterHotKey(long long)
# @ stub UnregisterMessagePumpHook
# @ stub UnregisterMessagePumpHook
# @ stub UnregisterUserApiHook
# @ stub UnregisterUserApiHook
# @ stub UpdateLayeredWindow
@ stdcall UpdateLayeredWindow(long long ptr ptr long ptr long ptr long)
@ stub UpdatePerUserSystemParameters
@ stub UpdatePerUserSystemParameters
@ stdcall UpdateWindow(long)
@ stdcall UpdateWindow(long)
@ stdcall User32InitializeImmEntryTable(ptr)
@ stdcall User32InitializeImmEntryTable(ptr)
...
...
dlls/user/win.c
View file @
d782abff
...
@@ -3077,3 +3077,15 @@ BOOL WINAPI SetLayeredWindowAttributes( HWND hWnd, COLORREF rgbKey,
...
@@ -3077,3 +3077,15 @@ BOOL WINAPI SetLayeredWindowAttributes( HWND hWnd, COLORREF rgbKey,
FIXME
(
"(%p,0x%.8lx,%d,%ld): stub!
\n
"
,
hWnd
,
rgbKey
,
bAlpha
,
dwFlags
);
FIXME
(
"(%p,0x%.8lx,%d,%ld): stub!
\n
"
,
hWnd
,
rgbKey
,
bAlpha
,
dwFlags
);
return
TRUE
;
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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment