| 1079 | } |
| 1080 | |
| 1081 | bool SaveFileDialog(CWnd *wnd, LPCTSTR filter, char *pathname, char *initialdir, int dirlen) { |
| 1082 | return FileDialog(wnd, FALSE, filter, pathname, initialdir, dirlen); |
| 1083 | } |
| 1084 | |
| 1085 | bool FileDialog(CWnd *wnd, BOOL open, LPCTSTR filter, char *pathname, char *initialdir, int dirlen) { |
| 1086 | CFileDialog *dlg; |
no test coverage detected