]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/wince/chkconf.h
use static_cast<> for wxStaticCast; updated comment in front of wxDynamicCast()
[wxWidgets.git] / include / wx / msw / wince / chkconf.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/wince/chkconf.h
3 // Purpose: WinCE-specific configuration options checks
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 2005-03-07
7 // RCS-ID: $Id$
8 // Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MSW_WINCE_CHKCONF_H_
13 #define _WX_MSW_WINCE_CHKCONF_H_
14
15 // Standard SDK lacks a few things, forcefully disable them
16 #ifdef WCE_PLATFORM_STANDARDSDK
17 // no shell functions support
18 #undef wxUSE_STDPATHS
19 #define wxUSE_STDPATHS 0
20 #endif // WCE_PLATFORM_STANDARDSDK
21
22 #endif // _WX_MSW_WINCE_CHKCONF_H_
23