mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 11:14:58 -06:00
18 lines
305 B
C++
Executable File
18 lines
305 B
C++
Executable File
// Windows/CommonDialog.h
|
|
|
|
#ifndef __WINDOWS_COMMONDIALOG_H
|
|
#define __WINDOWS_COMMONDIALOG_H
|
|
|
|
#include <windows.h>
|
|
|
|
#include "Common/MyString.h"
|
|
#include "Windows/Defs.h"
|
|
|
|
namespace NWindows{
|
|
|
|
bool MyGetOpenFileName(HWND hwnd, LPCWSTR title, LPCWSTR fullFileName, LPCWSTR s, UString &resPath);
|
|
|
|
}
|
|
|
|
#endif
|