2012-11-01 16:19:01 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace W32Util
|
|
|
|
|
{
|
|
|
|
|
std::string BrowseForFolder(HWND parent, char *title);
|
2013-08-26 21:32:05 +02:00
|
|
|
bool BrowseForFileName (bool _bLoad, HWND _hParent, const wchar_t*_pTitle,
|
|
|
|
|
const wchar_t *_pInitialFolder,const wchar_t *_pFilter,const wchar_t*_pExtension,
|
2012-11-01 16:19:01 +01:00
|
|
|
std::string& _strFileName);
|
2013-08-26 21:32:05 +02:00
|
|
|
std::vector<std::string> BrowseForFileNameMultiSelect(bool _bLoad, HWND _hParent, const wchar_t*_pTitle,
|
|
|
|
|
const wchar_t*_pInitialFolder,const wchar_t*_pFilter,const wchar_t*_pExtension);
|
2012-11-01 16:19:01 +01:00
|
|
|
}
|