Remove Windows CE support
Windows CE doesn't seem to be supported by Microsoft any longer. Last CE release was in early 2013 and the PocketPC and Smartphone targets supported by wxWidgets are long gone. The build files where already removed in an earlier cleanup this commit removes all files, every #ifdef and all documentation regarding the Windows CE support. Closes https://github.com/wxWidgets/wxWidgets/pull/81
This commit is contained in:
committed by
Vadim Zeitlin
parent
6fbc2bd0b7
commit
8282c1be0f
@@ -34,13 +34,7 @@ of MSW, MAC and OS2
|
||||
#define USE_DLL 0
|
||||
#endif
|
||||
|
||||
#if defined(__WXWINCE__)
|
||||
#define USE_WXWINCE 1
|
||||
#else
|
||||
#define USE_WXWINCE 0
|
||||
#endif
|
||||
|
||||
#if defined(__WXMSW__) && !USE_WXWINCE
|
||||
#if defined(__WXMSW__)
|
||||
#define USE_WXMSW 1
|
||||
#else
|
||||
#define USE_WXMSW 0
|
||||
@@ -72,13 +66,13 @@ of MSW, MAC and OS2
|
||||
((USE_WXMSW || USE_WXMAC) && USE_GENERIC_DIALOGS && wxUSE_DIRDLG)
|
||||
#define USE_FILEDLG_GENERIC \
|
||||
((((USE_WXMSW || USE_WXMAC || USE_WXGTK) \
|
||||
&& USE_GENERIC_DIALOGS) || USE_WXWINCE) && wxUSE_FILEDLG)
|
||||
&& USE_GENERIC_DIALOGS) ) && wxUSE_FILEDLG)
|
||||
#define USE_FONTDLG_GENERIC \
|
||||
((USE_WXMSW || USE_WXMACFONTDLG) && USE_GENERIC_DIALOGS && wxUSE_FONTDLG)
|
||||
|
||||
// Turn USE_MODAL_PRESENTATION to 0 if there is any reason for not presenting difference
|
||||
// between modal and modeless dialogs (ie. not implemented it in your port yet)
|
||||
#if defined(__SMARTPHONE__) || !wxUSE_BOOKCTRL
|
||||
#if !wxUSE_BOOKCTRL
|
||||
#define USE_MODAL_PRESENTATION 0
|
||||
#else
|
||||
#define USE_MODAL_PRESENTATION 1
|
||||
|
Reference in New Issue
Block a user