-#define wxOPEN 0x0001
-#define wxSAVE 0x0002
-#define wxOVERWRITE_PROMPT 0x0004
-#define wxHIDE_READONLY 0x0008
-#define wxFILE_MUST_EXIST 0x0010
-
-//
-// File selector - backward compatibility
-//
-WXDLLEXPORT wxString wxFileSelector( const char* pzMessage = wxFileSelectorPromptStr
- ,const char* pzDefaultPath = NULL
- ,const char* pzDefaultFilename = NULL
- ,const char* pzDefaultExtension = NULL
- ,const char* pzWildcard = wxFileSelectorDefaultWildcardStr
- ,int nFlags = 0
- ,wxWindow* pParent = NULL
- ,int nX = -1
- ,int nY = -1
- );
-
-//
-// An extended version of wxFileSelector
-
-WXDLLEXPORT wxString wxFileSelectorEx( const char* pzMessage = wxFileSelectorPromptStr
- ,const char* pzDefaultPath = NULL
- ,const char* pzDefaultFilename = NULL
- ,int* pnIndexDefaultExtension = NULL
- ,const char* pzWildcard = wxFileSelectorDefaultWildcardStr
- ,int nFlags = 0
- ,wxWindow* pParent = NULL
- ,int nX = -1
- ,int nY = -1
- );
-
-//
-// Generic file load dialog
-//
-WXDLLEXPORT wxString wxLoadFileSelector( const char* pzWhat
- ,const char* pzExtension
- ,const char* pzDefaultName = NULL
- ,wxWindow* pParent = NULL
- );
-
-//
-// Generic file save dialog
-//
-WXDLLEXPORT wxString wxSaveFileSelector( const char* pzWhat
- ,const char* pzExtension
- ,const char* pzDefaultName = NULL
- ,wxWindow* pParent = NULL
- );
-
-#endif
-
-// _WX_FILEDLG_H_