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
This commit is contained in:
@@ -17,6 +17,8 @@
|
|||||||
|
|
||||||
#if defined(__WXPALMOS__)
|
#if defined(__WXPALMOS__)
|
||||||
# include "wx/palmos/chkconf.h"
|
# include "wx/palmos/chkconf.h"
|
||||||
|
#elif defined(__WXWINCE__)
|
||||||
|
# include "wx/msw/wince/chkconf.h"
|
||||||
#elif defined(__WXMSW__)
|
#elif defined(__WXMSW__)
|
||||||
# include "wx/msw/chkconf.h"
|
# include "wx/msw/chkconf.h"
|
||||||
#elif defined(__WXMAC__)
|
#elif defined(__WXMAC__)
|
||||||
|
23
include/wx/msw/wince/chkconf.h
Normal file
23
include/wx/msw/wince/chkconf.h
Normal file
@@ -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 <vadim@wxwindows.org>
|
||||||
|
// 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_
|
||||||
|
|
Reference in New Issue
Block a user