aboutsummaryrefslogtreecommitdiff
path: root/src/libs/dutil/WixToolset.DUtil/inc/wndutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/wndutil.h')
-rw-r--r--src/libs/dutil/WixToolset.DUtil/inc/wndutil.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/wndutil.h b/src/libs/dutil/WixToolset.DUtil/inc/wndutil.h
index 8de77f6e..ad4e07b0 100644
--- a/src/libs/dutil/WixToolset.DUtil/inc/wndutil.h
+++ b/src/libs/dutil/WixToolset.DUtil/inc/wndutil.h
@@ -35,6 +35,33 @@ HRESULT DAPI WnduGetControlText(
35 __inout_z LPWSTR* psczText 35 __inout_z LPWSTR* psczText
36 ); 36 );
37 37
38/********************************************************************
39 WnduShowOpenFileDialog - shows the system dialog to select a file for opening.
40
41*******************************************************************/
42HRESULT DAPI WnduShowOpenFileDialog(
43 __in_opt HWND hwndParent,
44 __in BOOL fForcePathExists,
45 __in BOOL fForceFileExists,
46 __in_opt LPCWSTR wzTitle,
47 __in_opt COMDLG_FILTERSPEC* rgFilters,
48 __in DWORD cFilters,
49 __in DWORD dwDefaultFilter,
50 __in_opt LPCWSTR wzDefaultPath,
51 __inout LPWSTR* psczPath
52 );
53
54/********************************************************************
55 WnduShowOpenFolderDialog - shows the system dialog to select a folder.
56
57*******************************************************************/
58HRESULT DAPI WnduShowOpenFolderDialog(
59 __in_opt HWND hwndParent,
60 __in BOOL fForceFileSystem,
61 __in_opt LPCWSTR wzTitle,
62 __inout LPWSTR* psczPath
63 );
64
38#ifdef __cplusplus 65#ifdef __cplusplus
39} 66}
40#endif 67#endif