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
3d55d143
Commit
3d55d143
authored
Feb 01, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Call the 16-bit CreateIconFromResourceEx from LoadIconHandler16.
parent
e474bfe0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
user.c
dlls/user.exe16/user.c
+2
-3
No files found.
dlls/user.exe16/user.c
View file @
3d55d143
...
@@ -2614,9 +2614,8 @@ WORD WINAPI GetIconID16( HGLOBAL16 hResource, DWORD resType )
...
@@ -2614,9 +2614,8 @@ WORD WINAPI GetIconID16( HGLOBAL16 hResource, DWORD resType )
*/
*/
HICON16
WINAPI
LoadIconHandler16
(
HGLOBAL16
hResource
,
BOOL16
bNew
)
HICON16
WINAPI
LoadIconHandler16
(
HGLOBAL16
hResource
,
BOOL16
bNew
)
{
{
LPBYTE
bits
=
LockResource16
(
hResource
);
return
CreateIconFromResourceEx16
(
LockResource16
(
hResource
),
0
,
TRUE
,
return
HICON_16
(
CreateIconFromResourceEx
(
bits
,
0
,
TRUE
,
bNew
?
0x00030000
:
0x00020000
,
0
,
0
,
LR_DEFAULTCOLOR
);
bNew
?
0x00030000
:
0x00020000
,
0
,
0
,
LR_DEFAULTCOLOR
));
}
}
...
...
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