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
91adf0aa
Commit
91adf0aa
authored
Feb 12, 2001
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 12, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added unicode MDI client window proc.
parent
2c6e3ff0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
8 deletions
+5
-8
controls.h
dlls/user/controls.h
+0
-4
user32.spec
dlls/user/user32.spec
+1
-1
winuser.h
include/winuser.h
+1
-0
mdi.c
windows/mdi.c
+0
-0
win.c
windows/win.c
+3
-3
No files found.
dlls/user/controls.h
View file @
91adf0aa
...
...
@@ -38,10 +38,6 @@ extern BOOL DESKTOP_SetPattern( LPCSTR pattern );
/* icon title */
extern
HWND
ICONTITLE_Create
(
struct
tagWND
*
);
/* MDI client */
extern
HWND
MDI_CreateMDIWindowA
(
LPCSTR
,
LPCSTR
,
DWORD
,
INT
,
INT
,
INT
,
INT
,
HWND
,
HINSTANCE
,
LPARAM
);
extern
HWND
MDI_CreateMDIWindowW
(
LPCWSTR
,
LPCWSTR
,
DWORD
,
INT
,
INT
,
INT
,
INT
,
HWND
,
HINSTANCE
,
LPARAM
);
/* menu controls */
extern
BOOL
MENU_Init
(
void
);
extern
BOOL
MENU_IsMenuActive
(
void
);
...
...
dlls/user/user32.spec
View file @
91adf0aa
...
...
@@ -25,7 +25,7 @@ debug_channels (accel caret class clipboard combo cursor dc ddeml dialog driver
@ stdcall BeginPaint(long ptr) BeginPaint
@ stdcall BringWindowToTop(long) BringWindowToTop
@ stdcall BroadcastSystemMessage(long ptr long long long) BroadcastSystemMessage
@ st
ub
CalcChildScroll
@ st
dcall CalcChildScroll(long long)
CalcChildScroll
@ stub CallMsgFilter
@ stdcall CallMsgFilterA(ptr long) CallMsgFilterA
@ stdcall CallMsgFilterW(ptr long) CallMsgFilterW
...
...
include/winuser.h
View file @
91adf0aa
...
...
@@ -3243,6 +3243,7 @@ UINT WINAPI ArrangeIconicWindows(HWND);
HDWP
WINAPI
BeginDeferWindowPos
(
INT
);
HDC
WINAPI
BeginPaint
(
HWND
,
LPPAINTSTRUCT
);
BOOL
WINAPI
BringWindowToTop
(
HWND
);
void
WINAPI
CalcChildScroll
(
HWND
,
INT
);
BOOL
WINAPI
CallMsgFilterA
(
LPMSG
,
INT
);
BOOL
WINAPI
CallMsgFilterW
(
LPMSG
,
INT
);
#define CallMsgFilter WINELIB_NAME_AW(CallMsgFilter)
...
...
windows/mdi.c
View file @
91adf0aa
This diff is collapsed.
Click to expand it.
windows/win.c
View file @
91adf0aa
...
...
@@ -720,7 +720,7 @@ static HWND WIN_CreateWindowEx( CREATESTRUCTA *cs, ATOM classAtom,
DWORD
clsStyle
;
WNDPROC
winproc
;
DCE
*
dce
;
LRESULT
(
CALLBACK
*
localSend32
)(
HWND
,
UINT
,
WPARAM
,
LPARAM
);
LRESULT
CALLBACK
(
*
localSend32
)(
HWND
,
UINT
,
WPARAM
,
LPARAM
);
TRACE
(
"%s %s %08lx %08lx %d,%d %dx%d %04x %04x %08x %p
\n
"
,
(
type
==
WIN_PROC_32W
)
?
debugres_w
((
LPWSTR
)
cs
->
lpszName
)
:
debugres_a
(
cs
->
lpszName
),
...
...
@@ -1098,7 +1098,7 @@ HWND WINAPI CreateWindowExA( DWORD exStyle, LPCSTR className,
instance
=
GetModuleHandleA
(
NULL
);
if
(
exStyle
&
WS_EX_MDICHILD
)
return
MDI_
CreateMDIWindowA
(
className
,
windowName
,
style
,
x
,
y
,
width
,
height
,
parent
,
instance
,
(
LPARAM
)
data
);
return
CreateMDIWindowA
(
className
,
windowName
,
style
,
x
,
y
,
width
,
height
,
parent
,
instance
,
(
LPARAM
)
data
);
/* Find the class atom */
...
...
@@ -1157,7 +1157,7 @@ HWND WINAPI CreateWindowExW( DWORD exStyle, LPCWSTR className,
instance
=
GetModuleHandleA
(
NULL
);
if
(
exStyle
&
WS_EX_MDICHILD
)
return
MDI_
CreateMDIWindowW
(
className
,
windowName
,
style
,
x
,
y
,
width
,
height
,
parent
,
instance
,
(
LPARAM
)
data
);
return
CreateMDIWindowW
(
className
,
windowName
,
style
,
x
,
y
,
width
,
height
,
parent
,
instance
,
(
LPARAM
)
data
);
/* Find the class atom */
...
...
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