summaryrefslogtreecommitdiffstats
path: root/src/corelib/arch
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2009-09-01 13:27:35 (GMT)
committerJoerg Bornemann <joerg.bornemann@nokia.com>2009-09-01 13:30:33 (GMT)
commitd117525a4ff8757208231fa77f171c7fd7a30ef9 (patch)
treed8c94828995f547cb6538e799b1fea5ca337be07 /src/corelib/arch
parenta7178d96d7e9c50a4392ab9ee23b219d26028ed3 (diff)
downloadQt-d117525a4ff8757208231fa77f171c7fd7a30ef9.zip
Qt-d117525a4ff8757208231fa77f171c7fd7a30ef9.tar.gz
Qt-d117525a4ff8757208231fa77f171c7fd7a30ef9.tar.bz2
fix Windows CE compile failure in qatomic_windows.h
Reviewed-by: joao
Diffstat (limited to 'src/corelib/arch')
-rw-r--r--src/corelib/arch/qatomic_windows.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/arch/qatomic_windows.h b/src/corelib/arch/qatomic_windows.h
index a09e9fd..9b7ff5d 100644
--- a/src/corelib/arch/qatomic_windows.h
+++ b/src/corelib/arch/qatomic_windows.h
@@ -133,7 +133,7 @@ extern "C" {
long QT_INTERLOCKED_PROTOTYPE QT_INTERLOCKED_FUNCTION( InterlockedExchange )(long QT_INTERLOCKED_VOLATILE *, long);
long QT_INTERLOCKED_PROTOTYPE QT_INTERLOCKED_FUNCTION( InterlockedExchangeAdd )(long QT_INTERLOCKED_VOLATILE *, long);
-# if !defined(__i386__) && !defined(_M_IX86)
+# if !defined(Q_OS_WINCE) && !defined(__i386__) && !defined(_M_IX86)
void * QT_INTERLOCKED_FUNCTION( InterlockedCompareExchangePointer )(void * QT_INTERLOCKED_VOLATILE *, void *, void *);
void * QT_INTERLOCKED_FUNCTION( InterlockedExchangePointer )(void * QT_INTERLOCKED_VOLATILE *, void *);
__int64 QT_INTERLOCKED_FUNCTION( InterlockedExchangeAdd64 )(__int64 QT_INTERLOCKED_VOLATILE *, __int64);