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
c8c8f1b8
Commit
c8c8f1b8
authored
Feb 03, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for CDM_HIDECONTROL message in the file open dialog.
parent
b489f381
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
filedlg.c
dlls/commdlg/filedlg.c
+10
-3
No files found.
dlls/commdlg/filedlg.c
View file @
c8c8f1b8
...
...
@@ -989,12 +989,19 @@ static INT_PTR FILEDLG95_HandleCustomDialogMessages(HWND hwnd, UINT uMsg, WPARAM
break
;
case
CDM_HIDECONTROL
:
case
CDM_SETDEFEXT
:
FIXME
(
"CDM_HIDECONTROL,CDM_SETCONTROLTEXT,CDM_SETDEFEXT not implemented
\n
"
);
retval
=
-
1
;
/* MSDN states that it should fail for not OFN_EXPLORER case */
if
(
fodInfos
->
ofnInfos
->
Flags
&
OFN_EXPLORER
)
{
HWND
control
=
GetDlgItem
(
hwnd
,
wParam
);
if
(
control
)
ShowWindow
(
control
,
SW_HIDE
);
retval
=
TRUE
;
}
else
retval
=
FALSE
;
break
;
default:
if
(
uMsg
>=
CDM_FIRST
&&
uMsg
<=
CDM_LAST
)
FIXME
(
"message CDM_FIRST+%04x not implemented
\n
"
,
uMsg
-
CDM_FIRST
);
return
FALSE
;
}
SetWindowLongPtrW
(
hwnd
,
DWLP_MSGRESULT
,
retval
);
...
...
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