+//----------------------------------------------------------------------------
+// wxFileDialog data and generic functions
+//----------------------------------------------------------------------------
+
+enum
+{
+ wxOPEN = 0x0001,
+ wxSAVE = 0x0002,
+ wxOVERWRITE_PROMPT = 0x0004,
+ wxHIDE_READONLY = 0x0008,
+ wxFILE_MUST_EXIST = 0x0010,
+ wxMULTIPLE = 0x0020,
+ wxCHANGE_DIR = 0x0040
+};
+
+WXDLLEXPORT_DATA(extern const wxChar*) wxFileSelectorPromptStr;
+WXDLLEXPORT_DATA(extern const wxChar*) wxFileSelectorDefaultWildcardStr;
+
+// Parses the filterStr, returning the number of filters.
+// Returns 0 if none or if there's a problem, they arrays will contain an equal
+// number of items found before the error.
+// filterStr is in the form:
+// "All files (*.*)|*.*|Image Files (*.jpeg *.png)|*.jpg;*.png"
+extern int wxParseFileFilter(const wxString& filterStr,
+ wxArrayString& descriptions,
+ wxArrayString& filters);
+
+//----------------------------------------------------------------------------
+// wxFileDialog convenience functions
+//----------------------------------------------------------------------------
+