Changeset 44765 in webkit for trunk/JavaScriptCore/wtf/Platform.h
- Timestamp:
- Jun 17, 2009, 9:39:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/Platform.h
r44702 r44765 57 57 #endif 58 58 59 /* PLATFORM(WIN _CE) */59 /* PLATFORM(WINCE) */ 60 60 /* Operating system level dependencies for Windows CE that should be used */ 61 61 /* regardless of operating environment */ 62 62 /* Note that for this platform PLATFORM(WIN_OS) is also defined. */ 63 63 #if defined(_WIN32_WCE) 64 #define WTF_PLATFORM_WIN _CE 164 #define WTF_PLATFORM_WINCE 1 65 65 #endif 66 66 … … 259 259 #endif 260 260 261 /* PLATFORM(WIN _CE) && PLATFORM(QT)261 /* PLATFORM(WINCE) && PLATFORM(QT) 262 262 We can not determine the endianess at compile time. For 263 263 Qt for Windows CE the endianess is specified in the 264 264 device specific makespec 265 265 */ 266 #if PLATFORM(WIN _CE) && PLATFORM(QT)266 #if PLATFORM(WINCE) && PLATFORM(QT) 267 267 # include <QtGlobal> 268 268 # undef WTF_PLATFORM_BIG_ENDIAN … … 407 407 408 408 #define HAVE_FLOAT_H 1 409 #if PLATFORM(WIN _CE)409 #if PLATFORM(WINCE) 410 410 #define HAVE_ERRNO_H 0 411 411 #else
Note:
See TracChangeset
for help on using the changeset viewer.