bsnes/higan/phoenix/cocoa/dialog-window.hpp

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);
};
}