]> git.saurik.com Git - wxWidgets.git/commitdiff
Hardware defines spec.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 28 Sep 2004 16:32:06 +0000 (16:32 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 28 Sep 2004 16:32:06 +0000 (16:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
docs/msw/wince/guidelines.txt

index c4186cedf30ca70c600d1c0914775af4de175d09..22f80ef4bb06db75511a67bd9ef83b78d91ea963 100644 (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:
index c791eae909e7f4d42e31fdf23687b9a654d38f83..c048d36955d1852832641a80edfd135ab2525401 100644 (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
\ No newline at end of file