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
a467feae
Commit
a467feae
authored
Jan 10, 2008
by
Louis Lenders
Committed by
Alexandre Julliard
Jan 10, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add stub for GetLayeredWindowAttributes.
parent
368d9353
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
user32.spec
dlls/user32/user32.spec
+1
-1
win.c
dlls/user32/win.c
+10
-0
No files found.
dlls/user32/user32.spec
View file @
a467feae
...
...
@@ -304,7 +304,7 @@
@ stdcall GetKeyboardType(long)
@ stdcall GetLastActivePopup(long)
@ stdcall GetLastInputInfo(ptr)
# @ stub GetLayeredWindowAttributes
@ stdcall GetLayeredWindowAttributes(long ptr ptr ptr)
# @ stub GetListBoxInfo
@ stdcall GetMenu(long)
@ stdcall GetMenuBarInfo(long long long ptr)
...
...
dlls/user32/win.c
View file @
a467feae
...
...
@@ -3084,6 +3084,16 @@ BOOL WINAPI SetLayeredWindowAttributes( HWND hWnd, COLORREF rgbKey,
}
/*****************************************************************************
* GetLayeredWindowAttributes (USER32.@)
*/
BOOL
WINAPI
GetLayeredWindowAttributes
(
HWND
hWnd
,
COLORREF
*
prgbKey
,
BYTE
*
pbAlpha
,
DWORD
*
pdwFlags
)
{
FIXME
(
"(%p,%p,%p,%p): stub!
\n
"
,
hWnd
,
prgbKey
,
pbAlpha
,
pdwFlags
);
return
FALSE
;
}
/*****************************************************************************
* UpdateLayeredWindow (USER32.@)
*/
BOOL
WINAPI
UpdateLayeredWindow
(
HWND
hwnd
,
HDC
hdcDst
,
POINT
*
pptDst
,
SIZE
*
psize
,
...
...
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