diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-19 13:47:18 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-19 13:47:18 (GMT) |
commit | f1d40eef93220d502fca94667a64188f7f9fe094 (patch) | |
tree | 6c480cc04fce7b1706ba87c848eb129ae5288e14 /Source/WXDialog/wxincludes.h | |
parent | 0dafd886fc719b5fbb0d56f30262ba09c76a160b (diff) | |
download | CMake-f1d40eef93220d502fca94667a64188f7f9fe094.zip CMake-f1d40eef93220d502fca94667a64188f7f9fe094.tar.gz CMake-f1d40eef93220d502fca94667a64188f7f9fe094.tar.bz2 |
Initial import of wxWindows dialog
Diffstat (limited to 'Source/WXDialog/wxincludes.h')
-rw-r--r-- | Source/WXDialog/wxincludes.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/Source/WXDialog/wxincludes.h b/Source/WXDialog/wxincludes.h new file mode 100644 index 0000000..be5b4e6 --- /dev/null +++ b/Source/WXDialog/wxincludes.h @@ -0,0 +1,52 @@ +#ifdef WIN32 + +#define __WIN32 +#define _WINDOWS +#define __WINDOWS__ +#define __WXMSW__ +#define __WIN32__ +#define WINVER 0x0400 +#define STRICT + + +#include "wx/defs.h" +#include "wx/app.h" +#include "wx/button.h" +#include "wx/checkbox.h" +#include "wx/combobox.h" +#include "wx/config.h" +#include "wx/control.h" +#include "wx/dirdlg.h" +#include "wx/filedlg.h" +#include "wx/menu.h" +#include "wx/msgdlg.h" +#include "wx/scrolwin.h" +#include "wx/sizer.h" +#include "wx/statbox.h" +#include "wx/stattext.h" +#include "wx/textctrl.h" + +#pragma hdrstop("wxincludes.pch") + +#else + + +#include "wx/app.h" +#include "wx/button.h" +#include "wx/checkbox.h" +#include "wx/combobox.h" +#include "wx/config.h" +#include "wx/control.h" +#include "wx/dirdlg.h" +#include "wx/filedlg.h" +#include "wx/menu.h" +#include "wx/msgdlg.h" +#include "wx/scrolwin.h" +#include "wx/sizer.h" +#include "wx/statbox.h" +#include "wx/stattext.h" +#include "wx/textctrl.h" + +#endif + +#undef FileExists |