b64f0a5fc7
Get configure to bring in the necessary libs and object files if the compiler can handle ole. Added --enable-metafile option, defaults to yes but again only used if ole is supported. Fixed the last of the #ifdef wxUSE_NORLANDER.. tests to check if its non-zero (it's always defined) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9326 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
34 lines
975 B
C
34 lines
975 B
C
#ifndef _WX_DIRDLG_H_BASE_
|
|
#define _WX_DIRDLG_H_BASE_
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// constants
|
|
// ----------------------------------------------------------------------------
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogNameStr;
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxDirDialogDefaultFolderStr;
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
|
|
|
|
#if defined(__WXMSW__)
|
|
#if defined(__WIN16__) || (defined(__GNUWIN32__) && !wxUSE_NORLANDER_HEADERS) || defined(__SALFORDC__)
|
|
#include "wx/generic/dirdlgg.h"
|
|
#else
|
|
#include "wx/msw/dirdlg.h"
|
|
#endif
|
|
#elif defined(__WXMOTIF__)
|
|
#include "wx/generic/dirdlgg.h"
|
|
#elif defined(__WXGTK__)
|
|
#include "wx/generic/dirdlgg.h"
|
|
#elif defined(__WXQT__)
|
|
#include "wx/qt/dirdlg.h"
|
|
#elif defined(__WXMAC__)
|
|
#include "wx/mac/dirdlg.h"
|
|
#elif defined(__WXPM__)
|
|
#include "wx/os2/dirdlg.h"
|
|
#elif defined(__WXSTUBS__)
|
|
#include "wx/stubs/dirdlg.h"
|
|
#endif
|
|
|
|
#endif
|
|
// _WX_DIRDLG_H_BASE_
|