mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
20 lines
325 B
C++
Executable File
20 lines
325 B
C++
Executable File
// 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
|