mirror of https://github.com/bsnes-emu/bsnes.git
10 lines
286 B
C++
10 lines
286 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pDialogWindow {
|
||
|
static string fileOpen(Window &parent, const string &path, const lstring &filter);
|
||
|
static string fileSave(Window &parent, const string &path, const lstring &filter);
|
||
|
static string folderSelect(Window &parent, const string &path);
|
||
|
};
|
||
|
|
||
|
}
|