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
4cc6107a
Commit
4cc6107a
authored
May 24, 2011
by
David Hedberg
Committed by
Alexandre Julliard
May 25, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32: Add IFileDialogCustomize interface stub.
parent
93b947fd
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
itemdlg.c
dlls/comdlg32/itemdlg.c
+0
-0
itemdlg.c
dlls/comdlg32/tests/itemdlg.c
+13
-2
No files found.
dlls/comdlg32/itemdlg.c
View file @
4cc6107a
This diff is collapsed.
Click to expand it.
dlls/comdlg32/tests/itemdlg.c
View file @
4cc6107a
...
...
@@ -40,6 +40,9 @@ static void init_function_pointers(void)
#undef MAKEFUNC
}
#include <initguid.h>
DEFINE_GUID
(
IID_IFileDialogCustomizeAlt
,
0x8016B7B3
,
0x3D49
,
0x4504
,
0xA0
,
0xAA
,
0x2A
,
0x37
,
0x49
,
0x4E
,
0x60
,
0x6F
);
/**************************************************************************
* IFileDialogEvents implementation
*/
...
...
@@ -218,7 +221,11 @@ static BOOL test_instantiation(void)
if
(
SUCCEEDED
(
hr
))
IFileDialog_Release
(
pfd
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IFileDialogCustomize
,
(
void
**
)
&
punk
);
todo_wine
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IUnknown_Release
(
punk
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IFileDialogCustomizeAlt
,
(
void
**
)
&
punk
);
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IUnknown_Release
(
punk
);
hr
=
IFileOpenDialog_QueryInterface
(
pfod
,
&
IID_IFileSaveDialog
,
(
void
**
)
&
pfsd
);
...
...
@@ -311,7 +318,11 @@ static BOOL test_instantiation(void)
if
(
SUCCEEDED
(
hr
))
IFileDialog_Release
(
pfd
);
hr
=
IFileSaveDialog_QueryInterface
(
pfsd
,
&
IID_IFileDialogCustomize
,
(
void
**
)
&
punk
);
todo_wine
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IUnknown_Release
(
punk
);
hr
=
IFileSaveDialog_QueryInterface
(
pfsd
,
&
IID_IFileDialogCustomizeAlt
,
(
void
**
)
&
punk
);
ok
(
hr
==
S_OK
,
"got 0x%08x.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IUnknown_Release
(
punk
);
hr
=
IFileSaveDialog_QueryInterface
(
pfsd
,
&
IID_IFileOpenDialog
,
(
void
**
)
&
pfod
);
...
...
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