From: Włodzimierz Skiba Date: Tue, 28 Sep 2004 16:32:06 +0000 (+0000) Subject: Hardware defines spec. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5b33ae84fdfa7c23dfa16050a96aa1fc355406cc Hardware defines spec. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/docs/changes.txt b/docs/changes.txt index c4186cedf3..22f80ef4bb 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -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: diff --git a/docs/msw/wince/guidelines.txt b/docs/msw/wince/guidelines.txt index c791eae909..c048d36955 100644 --- a/docs/msw/wince/guidelines.txt +++ b/docs/msw/wince/guidelines.txt @@ -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