Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e2048747
Commit
e2048747
authored
Feb 01, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed the no longer used WIN_SetExStyle function.
parent
d7726c3a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
42 deletions
+0
-42
user32.spec
dlls/user/user32.spec
+0
-1
win.h
include/win.h
+0
-1
win.c
windows/win.c
+0
-40
No files found.
dlls/user/user32.spec
View file @
e2048747
...
...
@@ -736,6 +736,5 @@
@ cdecl WIN_LinkWindow(long long long)
@ cdecl WIN_ListChildren(long)
@ cdecl WIN_ReleaseWndPtr(ptr)
@ cdecl WIN_SetExStyle(long long)
@ cdecl WIN_SetStyle(long long long)
@ cdecl WIN_UnlinkWindow(long)
include/win.h
View file @
e2048747
...
...
@@ -87,7 +87,6 @@ extern void WIN_LinkWindow( HWND hwnd, HWND parent, HWND hwndInsertAfter );
extern
void
WIN_UnlinkWindow
(
HWND
hwnd
);
extern
HWND
WIN_SetOwner
(
HWND
hwnd
,
HWND
owner
);
extern
ULONG
WIN_SetStyle
(
HWND
hwnd
,
ULONG
set_bits
,
ULONG
clear_bits
);
extern
LONG
WIN_SetExStyle
(
HWND
hwnd
,
LONG
style
);
extern
BOOL
WIN_GetRectangles
(
HWND
hwnd
,
RECT
*
rectWindow
,
RECT
*
rectClient
);
extern
LRESULT
WIN_DestroyWindow
(
HWND
hwnd
);
extern
void
WIN_DestroyThreadWindows
(
HWND
hwnd
);
...
...
windows/win.c
View file @
e2048747
...
...
@@ -568,46 +568,6 @@ ULONG WIN_SetStyle( HWND hwnd, ULONG set_bits, ULONG clear_bits )
/***********************************************************************
* WIN_SetExStyle
*
* Change the extended style of a window.
*/
LONG
WIN_SetExStyle
(
HWND
hwnd
,
LONG
style
)
{
LONG
ret
=
0
;
WND
*
win
=
WIN_GetPtr
(
hwnd
);
if
(
!
win
)
return
0
;
if
(
win
==
WND_OTHER_PROCESS
)
{
if
(
IsWindow
(
hwnd
))
ERR
(
"cannot set exstyle %lx on other process window %p
\n
"
,
style
,
hwnd
);
return
0
;
}
if
(
style
==
win
->
dwExStyle
)
{
WIN_ReleasePtr
(
win
);
return
style
;
}
SERVER_START_REQ
(
set_window_info
)
{
req
->
handle
=
hwnd
;
req
->
flags
=
SET_WIN_EXSTYLE
;
req
->
ex_style
=
style
;
req
->
extra_offset
=
-
1
;
if
(
!
wine_server_call
(
req
))
{
ret
=
reply
->
old_ex_style
;
win
->
dwExStyle
=
style
;
}
}
SERVER_END_REQ
;
WIN_ReleasePtr
(
win
);
return
ret
;
}
/***********************************************************************
* WIN_GetRectangles
*
* Get the window and client rectangles.
...
...
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