Hardware defines spec.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-09-28 16:32:06 +00:00
parent 57ff58bd13
commit 5b33ae84fd
2 changed files with 15 additions and 10 deletions

View File

@@ -306,9 +306,9 @@ wxUniv/X11:
wxWinCE:
- added native SmartPhone wxTextCtrl implementation using spinners
- added native SmartPhone wxChoice implementation using spinners
- added automatized but customizable handling of native SmartPhone menus
- added native WinCE driven smartphone wxTextCtrl implementation using spinners
- added native WinCE driven smartphone wxChoice implementation using spinners
- added automatized but customizable handling of native WinCE driven smartphone menus
- fixed wxRadioBox and wxStaticBox
wxHTML:

View File

@@ -41,12 +41,17 @@ everything, i.e.:
#include "wx/msw/private.h"
(VZ)
7. Use shortcuts to verify device you are building for:
#ifdef WIN32_PLATFORM_WFSP == #ifdef __SMARTPHONE__
#ifdef WIN32_PLATFORM_PSPC == #ifdef __POCKETPC__
#ifdef WCE_PLATFORM_STANDARDSDK == #ifdef __WINCE_STANDARDSDK__
#if (complex condition) == #ifdef __HANDHELDPC__
7. Use following replacements to verify device you are building for:
#ifdef WIN32_PLATFORM_WFSP == #if defined(__WXWINCE__) && defined(__SMARTPHONE__)
#ifdef WIN32_PLATFORM_PSPC == #if defined(__WXWINCE__) && defined(__PDA__)
#ifdef WCE_PLATFORM_STANDARDSDK == #if defined(__WINCE_STANDARDSDK__)
#if WinCE but non of above == #if defined(__WXWINCE__) && defined(__HANDHELD__)
Marco Cavallini
www.koansoftware.com
Collective work
Julian Smart
Vadim Zeitlin
Robert Roebling
Marco Cavallini
ABX and many others