1 // Windows/Shell.h
2 
3 #ifndef __WINDOWS_SHELL_H
4 #define __WINDOWS_SHELL_H
5 
6 #include <windows.h>
7 // #include <shlobj.h>
8 
9 #include "Common/MyString.h"
10 #include "Windows/Defs.h"
11 
12 
13 namespace NWindows{
14 namespace NShell{
15 
16 bool BrowseForFolder(HWND owner, LPCWSTR title, LPCWSTR initialFolder, UString &resultPath);
17 
18 }}
19 
20 
21 #endif
22