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
6806451d
Commit
6806451d
authored
Feb 03, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Add icon handle mapping in the Get/SetClassWord/Long functions.
parent
48c8c8d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
window.c
dlls/user.exe16/window.c
+31
-0
No files found.
dlls/user.exe16/window.c
View file @
6806451d
...
...
@@ -747,6 +747,16 @@ void WINAPI ValidateRgn16( HWND16 hwnd, HRGN16 hrgn )
*/
WORD
WINAPI
GetClassWord16
(
HWND16
hwnd
,
INT16
offset
)
{
HICON
icon
;
switch
(
offset
)
{
case
GCLP_HCURSOR
:
case
GCLP_HICON
:
case
GCLP_HICONSM
:
icon
=
(
HICON
)
GetClassLongPtrW
(
WIN_Handle32
(
hwnd
),
offset
);
return
get_icon_16
(
icon
);
}
return
GetClassWord
(
WIN_Handle32
(
hwnd
),
offset
);
}
...
...
@@ -756,6 +766,16 @@ WORD WINAPI GetClassWord16( HWND16 hwnd, INT16 offset )
*/
WORD
WINAPI
SetClassWord16
(
HWND16
hwnd
,
INT16
offset
,
WORD
newval
)
{
HICON
icon
;
switch
(
offset
)
{
case
GCLP_HCURSOR
:
case
GCLP_HICON
:
case
GCLP_HICONSM
:
icon
=
(
HICON
)
SetClassLongPtrW
(
WIN_Handle32
(
hwnd
),
offset
,
(
ULONG_PTR
)
get_icon_32
(
newval
)
);
return
get_icon_16
(
icon
);
}
return
SetClassWord
(
WIN_Handle32
(
hwnd
),
offset
,
newval
);
}
...
...
@@ -773,6 +793,10 @@ LONG WINAPI GetClassLong16( HWND16 hwnd16, INT16 offset )
return
(
LONG_PTR
)
WINPROC_GetProc16
(
(
WNDPROC
)
ret
,
FALSE
);
case
GCLP_MENUNAME
:
return
MapLS
(
(
void
*
)
ret
);
/* leak */
case
GCLP_HCURSOR
:
case
GCLP_HICON
:
case
GCLP_HICONSM
:
return
get_icon_16
(
(
HICON
)
ret
);
default:
return
ret
;
}
...
...
@@ -784,8 +808,15 @@ LONG WINAPI GetClassLong16( HWND16 hwnd16, INT16 offset )
*/
LONG
WINAPI
SetClassLong16
(
HWND16
hwnd16
,
INT16
offset
,
LONG
newval
)
{
HICON
icon
;
switch
(
offset
)
{
case
GCLP_HCURSOR
:
case
GCLP_HICON
:
case
GCLP_HICONSM
:
icon
=
(
HICON
)
SetClassLongPtrW
(
WIN_Handle32
(
hwnd16
),
offset
,
(
ULONG_PTR
)
get_icon_32
(
newval
)
);
return
get_icon_16
(
icon
);
case
GCLP_WNDPROC
:
{
WNDPROC
new_proc
=
WINPROC_AllocProc16
(
(
WNDPROC16
)
newval
);
...
...
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