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
a9c5fd26
Commit
a9c5fd26
authored
May 10, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Moved Get/SetClassLong16 to wnd16.c.
parent
56220c24
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
117 deletions
+41
-117
class.c
dlls/user/class.c
+0
-117
wnd16.c
dlls/user/wnd16.c
+41
-0
No files found.
dlls/user/class.c
View file @
a9c5fd26
...
@@ -53,7 +53,6 @@ typedef struct tagCLASS
...
@@ -53,7 +53,6 @@ typedef struct tagCLASS
INT
cbClsExtra
;
/* Class extra bytes */
INT
cbClsExtra
;
/* Class extra bytes */
INT
cbWndExtra
;
/* Window extra bytes */
INT
cbWndExtra
;
/* Window extra bytes */
LPWSTR
menuName
;
/* Default menu name (Unicode followed by ASCII) */
LPWSTR
menuName
;
/* Default menu name (Unicode followed by ASCII) */
SEGPTR
segMenuName
;
/* Default menu name as SEGPTR */
HINSTANCE
hInstance
;
/* Module that created the task */
HINSTANCE
hInstance
;
/* Module that created the task */
HICON
hIcon
;
/* Default icon */
HICON
hIcon
;
/* Default icon */
HICON
hIconSm
;
/* Default small icon */
HICON
hIconSm
;
/* Default small icon */
...
@@ -149,18 +148,6 @@ static BOOL set_server_info( HWND hwnd, INT offset, LONG newval )
...
@@ -149,18 +148,6 @@ static BOOL set_server_info( HWND hwnd, INT offset, LONG newval )
*
*
* Get the class winproc for a given proc type
* Get the class winproc for a given proc type
*/
*/
static
WNDPROC16
CLASS_GetProc16
(
CLASS
*
classPtr
)
{
if
(
classPtr
->
winprocA
)
return
WINPROC_GetProc16
(
classPtr
->
winprocA
,
FALSE
);
else
return
WINPROC_GetProc16
(
classPtr
->
winprocW
,
TRUE
);
}
/***********************************************************************
* CLASS_GetProc
*
* Get the class winproc for a given proc type
*/
static
WNDPROC
CLASS_GetProc
(
CLASS
*
classPtr
,
BOOL
unicode
)
static
WNDPROC
CLASS_GetProc
(
CLASS
*
classPtr
,
BOOL
unicode
)
{
{
WNDPROC
proc
=
classPtr
->
winprocA
;
WNDPROC
proc
=
classPtr
->
winprocA
;
...
@@ -177,29 +164,6 @@ static WNDPROC CLASS_GetProc( CLASS *classPtr, BOOL unicode )
...
@@ -177,29 +164,6 @@ static WNDPROC CLASS_GetProc( CLASS *classPtr, BOOL unicode )
/***********************************************************************
/***********************************************************************
* CLASS_SetProc16
*
* Set the class winproc for a given proc type.
* Returns the previous window proc.
*/
static
void
CLASS_SetProc16
(
CLASS
*
classPtr
,
WNDPROC16
newproc
)
{
WNDPROC
proc
=
WINPROC_AllocProc16
(
newproc
);
if
(
WINPROC_IsUnicode
(
proc
,
FALSE
))
{
classPtr
->
winprocA
=
0
;
classPtr
->
winprocW
=
proc
;
}
else
{
classPtr
->
winprocA
=
proc
;
classPtr
->
winprocW
=
0
;
}
}
/***********************************************************************
* CLASS_SetProc
* CLASS_SetProc
*
*
* Set the class winproc for a given proc type.
* Set the class winproc for a given proc type.
...
@@ -235,20 +199,6 @@ inline static LPSTR CLASS_GetMenuNameA( CLASS *classPtr )
...
@@ -235,20 +199,6 @@ inline static LPSTR CLASS_GetMenuNameA( CLASS *classPtr )
/***********************************************************************
/***********************************************************************
* CLASS_GetMenuName16
*
* Get the menu name as a SEGPTR.
*/
inline
static
SEGPTR
CLASS_GetMenuName16
(
CLASS
*
classPtr
)
{
if
(
!
HIWORD
(
classPtr
->
menuName
))
return
(
SEGPTR
)
classPtr
->
menuName
;
if
(
!
classPtr
->
segMenuName
)
classPtr
->
segMenuName
=
MapLS
(
CLASS_GetMenuNameA
(
classPtr
)
);
return
classPtr
->
segMenuName
;
}
/***********************************************************************
* CLASS_GetMenuNameW
* CLASS_GetMenuNameW
*
*
* Get the menu name as a Unicode string.
* Get the menu name as a Unicode string.
...
@@ -266,8 +216,6 @@ inline static LPWSTR CLASS_GetMenuNameW( CLASS *classPtr )
...
@@ -266,8 +216,6 @@ inline static LPWSTR CLASS_GetMenuNameW( CLASS *classPtr )
*/
*/
static
void
CLASS_SetMenuNameA
(
CLASS
*
classPtr
,
LPCSTR
name
)
static
void
CLASS_SetMenuNameA
(
CLASS
*
classPtr
,
LPCSTR
name
)
{
{
UnMapLS
(
classPtr
->
segMenuName
);
classPtr
->
segMenuName
=
0
;
if
(
HIWORD
(
classPtr
->
menuName
))
HeapFree
(
GetProcessHeap
(),
0
,
classPtr
->
menuName
);
if
(
HIWORD
(
classPtr
->
menuName
))
HeapFree
(
GetProcessHeap
(),
0
,
classPtr
->
menuName
);
if
(
HIWORD
(
name
))
if
(
HIWORD
(
name
))
{
{
...
@@ -288,8 +236,6 @@ static void CLASS_SetMenuNameA( CLASS *classPtr, LPCSTR name )
...
@@ -288,8 +236,6 @@ static void CLASS_SetMenuNameA( CLASS *classPtr, LPCSTR name )
*/
*/
static
void
CLASS_SetMenuNameW
(
CLASS
*
classPtr
,
LPCWSTR
name
)
static
void
CLASS_SetMenuNameW
(
CLASS
*
classPtr
,
LPCWSTR
name
)
{
{
UnMapLS
(
classPtr
->
segMenuName
);
classPtr
->
segMenuName
=
0
;
if
(
HIWORD
(
classPtr
->
menuName
))
HeapFree
(
GetProcessHeap
(),
0
,
classPtr
->
menuName
);
if
(
HIWORD
(
classPtr
->
menuName
))
HeapFree
(
GetProcessHeap
(),
0
,
classPtr
->
menuName
);
if
(
HIWORD
(
name
))
if
(
HIWORD
(
name
))
{
{
...
@@ -318,7 +264,6 @@ static void CLASS_FreeClass( CLASS *classPtr )
...
@@ -318,7 +264,6 @@ static void CLASS_FreeClass( CLASS *classPtr )
list_remove
(
&
classPtr
->
entry
);
list_remove
(
&
classPtr
->
entry
);
if
(
classPtr
->
hbrBackground
>
(
HBRUSH
)(
COLOR_GRADIENTINACTIVECAPTION
+
1
))
if
(
classPtr
->
hbrBackground
>
(
HBRUSH
)(
COLOR_GRADIENTINACTIVECAPTION
+
1
))
DeleteObject
(
classPtr
->
hbrBackground
);
DeleteObject
(
classPtr
->
hbrBackground
);
UnMapLS
(
classPtr
->
segMenuName
);
HeapFree
(
GetProcessHeap
(),
0
,
classPtr
->
menuName
);
HeapFree
(
GetProcessHeap
(),
0
,
classPtr
->
menuName
);
HeapFree
(
GetProcessHeap
(),
0
,
classPtr
);
HeapFree
(
GetProcessHeap
(),
0
,
classPtr
);
USER_Unlock
();
USER_Unlock
();
...
@@ -742,40 +687,6 @@ WORD WINAPI GetClassWord( HWND hwnd, INT offset )
...
@@ -742,40 +687,6 @@ WORD WINAPI GetClassWord( HWND hwnd, INT offset )
/***********************************************************************
/***********************************************************************
* GetClassLong (USER.131)
*/
LONG
WINAPI
GetClassLong16
(
HWND16
hwnd16
,
INT16
offset
)
{
CLASS
*
class
;
LONG
ret
;
HWND
hwnd
=
(
HWND
)(
ULONG_PTR
)
hwnd16
;
/* no need for full handle */
TRACE
(
"%p %d
\n
"
,
hwnd
,
offset
);
switch
(
offset
)
{
case
GCLP_WNDPROC
:
if
(
!
(
class
=
get_class_ptr
(
hwnd
,
FALSE
)))
return
0
;
if
(
class
==
CLASS_OTHER_PROCESS
)
break
;
ret
=
(
LONG
)
CLASS_GetProc16
(
class
);
release_class_ptr
(
class
);
return
ret
;
case
GCLP_MENUNAME
:
if
(
!
(
class
=
get_class_ptr
(
hwnd
,
FALSE
)))
return
0
;
if
(
class
==
CLASS_OTHER_PROCESS
)
break
;
ret
=
(
LONG
)
CLASS_GetMenuName16
(
class
);
release_class_ptr
(
class
);
return
ret
;
default:
return
GetClassLongA
(
hwnd
,
offset
);
}
FIXME
(
"offset %d not supported on other process window %p
\n
"
,
offset
,
hwnd
);
SetLastError
(
ERROR_INVALID_HANDLE
);
return
0
;
}
/***********************************************************************
* GetClassLongW (USER32.@)
* GetClassLongW (USER32.@)
*/
*/
DWORD
WINAPI
GetClassLongW
(
HWND
hwnd
,
INT
offset
)
DWORD
WINAPI
GetClassLongW
(
HWND
hwnd
,
INT
offset
)
...
@@ -955,34 +866,6 @@ WORD WINAPI SetClassWord( HWND hwnd, INT offset, WORD newval )
...
@@ -955,34 +866,6 @@ WORD WINAPI SetClassWord( HWND hwnd, INT offset, WORD newval )
/***********************************************************************
/***********************************************************************
* SetClassLong (USER.132)
*/
LONG
WINAPI
SetClassLong16
(
HWND16
hwnd16
,
INT16
offset
,
LONG
newval
)
{
CLASS
*
class
;
LONG
retval
;
HWND
hwnd
=
(
HWND
)(
ULONG_PTR
)
hwnd16
;
/* no need for full handle */
TRACE
(
"%p %d %lx
\n
"
,
hwnd
,
offset
,
newval
);
switch
(
offset
)
{
case
GCLP_WNDPROC
:
if
(
!
(
class
=
get_class_ptr
(
hwnd
,
TRUE
)))
return
0
;
retval
=
(
LONG
)
CLASS_GetProc16
(
class
);
CLASS_SetProc16
(
class
,
(
WNDPROC16
)
newval
);
release_class_ptr
(
class
);
return
retval
;
case
GCLP_MENUNAME
:
newval
=
(
LONG
)
MapSL
(
newval
);
/* fall through */
default:
return
SetClassLongA
(
hwnd
,
offset
,
newval
);
}
}
/***********************************************************************
* SetClassLongW (USER32.@)
* SetClassLongW (USER32.@)
*/
*/
DWORD
WINAPI
SetClassLongW
(
HWND
hwnd
,
INT
offset
,
LONG
newval
)
DWORD
WINAPI
SetClassLongW
(
HWND
hwnd
,
INT
offset
,
LONG
newval
)
...
...
dlls/user/wnd16.c
View file @
a9c5fd26
...
@@ -661,6 +661,47 @@ WORD WINAPI SetClassWord16( HWND16 hwnd, INT16 offset, WORD newval )
...
@@ -661,6 +661,47 @@ WORD WINAPI SetClassWord16( HWND16 hwnd, INT16 offset, WORD newval )
}
}
/***********************************************************************
* GetClassLong (USER.131)
*/
LONG
WINAPI
GetClassLong16
(
HWND16
hwnd16
,
INT16
offset
)
{
LONG_PTR
ret
=
GetClassLongA
(
WIN_Handle32
(
hwnd16
),
offset
);
switch
(
offset
)
{
case
GCLP_WNDPROC
:
return
(
LONG_PTR
)
WINPROC_GetProc16
(
(
WNDPROC
)
ret
,
FALSE
);
case
GCLP_MENUNAME
:
return
MapLS
(
(
void
*
)
ret
);
/* leak */
default:
return
ret
;
}
}
/***********************************************************************
* SetClassLong (USER.132)
*/
LONG
WINAPI
SetClassLong16
(
HWND16
hwnd16
,
INT16
offset
,
LONG
newval
)
{
switch
(
offset
)
{
case
GCLP_WNDPROC
:
{
WNDPROC
new_proc
=
WINPROC_AllocProc16
(
(
WNDPROC16
)
newval
);
WNDPROC
old_proc
=
(
WNDPROC
)
SetClassLongA
(
WIN_Handle32
(
hwnd16
),
offset
,
(
LONG_PTR
)
new_proc
);
return
(
LONG
)
WINPROC_GetProc16
(
(
WNDPROC
)
old_proc
,
FALSE
);
}
case
GCLP_MENUNAME
:
newval
=
(
LONG
)
MapSL
(
newval
);
/* fall through */
default:
return
SetClassLongA
(
WIN_Handle32
(
hwnd16
),
offset
,
newval
);
}
}
/**************************************************************************
/**************************************************************************
* GetWindowWord (USER.133)
* GetWindowWord (USER.133)
*/
*/
...
...
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