mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-12 20:40:49 +00:00
15 lines
491 B
C++
15 lines
491 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
|
|
namespace W32Util
|
|
{
|
|
std::string BrowseForFolder(HWND parent, char *title);
|
|
bool BrowseForFileName (bool _bLoad, HWND _hParent, const char *_pTitle,
|
|
const char *_pInitialFolder,const char *_pFilter,const char *_pExtension,
|
|
std::string& _strFileName);
|
|
std::vector<std::string> BrowseForFileNameMultiSelect(bool _bLoad, HWND _hParent, const char *_pTitle,
|
|
const char *_pInitialFolder,const char *_pFilter,const char *_pExtension);
|
|
} |