summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/win/CPP/Windows/CommonDialog.h
blob: f24bb5b24fa1c8aa422e303c6f93f0f904f754da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Windows/CommonDialog.h

#ifndef __WINDOWS_COMMON_DIALOG_H
#define __WINDOWS_COMMON_DIALOG_H

#include "Common/MyString.h"

namespace NWindows{

bool MyGetOpenFileName(HWND hwnd, LPCWSTR title, LPCWSTR fullFileName,
    LPCWSTR s, UString &resPath
    #ifdef UNDER_CE
    , bool openFolder = false
    #endif
);

}

#endif