From 69dada2e7a616b263e73211e35c687196c8f89b5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 7 Mar 2005 22:42:59 +0000 Subject: [PATCH] added file with WinCE-specific configuration options checks git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/chkconf.h | 2 ++ include/wx/msw/wince/chkconf.h | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 include/wx/msw/wince/chkconf.h diff --git a/include/wx/chkconf.h b/include/wx/chkconf.h index a1208027bd..61ada5424b 100644 --- a/include/wx/chkconf.h +++ b/include/wx/chkconf.h @@ -17,6 +17,8 @@ #if defined(__WXPALMOS__) # include "wx/palmos/chkconf.h" +#elif defined(__WXWINCE__) +# include "wx/msw/wince/chkconf.h" #elif defined(__WXMSW__) # include "wx/msw/chkconf.h" #elif defined(__WXMAC__) diff --git a/include/wx/msw/wince/chkconf.h b/include/wx/msw/wince/chkconf.h new file mode 100644 index 0000000000..abdb5bb42a --- /dev/null +++ b/include/wx/msw/wince/chkconf.h @@ -0,0 +1,23 @@ +/////////////////////////////////////////////////////////////////////////////// +// Name: wx/wince/chkconf.h +// Purpose: WinCE-specific configuration options checks +// Author: Vadim Zeitlin +// Modified by: +// Created: 2005-03-07 +// RCS-ID: $Id$ +// Copyright: (c) 2005 Vadim Zeitlin +// Licence: wxWindows licence +/////////////////////////////////////////////////////////////////////////////// + +#ifndef _WX_MSW_WINCE_CHKCONF_H_ +#define _WX_MSW_WINCE_CHKCONF_H_ + +// Standard SDK lacks a few things, forcefully disable them +#ifdef WCE_PLATFORM_STANDARDSDK + // no shell functions support + #undef wxUSE_STDPATHS + #define wxUSE_STDPATHS 0 +#endif // WCE_PLATFORM_STANDARDSDK + +#endif // _WX_MSW_WINCE_CHKCONF_H_ + -- 2.45.2