Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CommonDialog.h « Windows « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 250c64f708cb501af2f802bc978bcb5bc4e84231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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