Misc. 16-bit compilation fixes
[wxWidgets.git] / include / wx / dirdlg.h
1 #ifndef _WX_DIRDLG_H_BASE_
2 #define _WX_DIRDLG_H_BASE_
3
4 // ----------------------------------------------------------------------------
5 // constants
6 // ----------------------------------------------------------------------------
7
8 WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr;
9 WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr;
10 WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
11
12 #if defined(__WXMSW__)
13 #if defined(__WIN16__) || defined(__GNUWIN32__) || defined(__SALFORDC__)
14 #include "wx/generic/dirdlgg.h"
15 #else
16 #include "wx/msw/dirdlg.h"
17 #endif
18 #elif defined(__WXMOTIF__)
19 #include "wx/generic/dirdlgg.h"
20 #elif defined(__WXGTK__)
21 #include "wx/generic/dirdlgg.h"
22 #elif defined(__WXQT__)
23 #include "wx/qt/dirdlg.h"
24 #elif defined(__WXMAC__)
25 #include "wx/mac/dirdlg.h"
26 #elif defined(__WXPM__)
27 #include "wx/os2/dirdlg.h"
28 #elif defined(__WXSTUBS__)
29 #include "wx/stubs/dirdlg.h"
30 #endif
31
32 #endif
33 // _WX_DIRDLG_H_BASE_