diff options
author | Oliver Gutbrod <ext-oliver.gutbrod@nokia.com> | 2010-10-20 11:53:07 (GMT) |
---|---|---|
committer | Oliver Gutbrod <ext-oliver.gutbrod@nokia.com> | 2010-10-20 12:33:51 (GMT) |
commit | 6a14ae66503266d812374e25548a455e26c7608d (patch) | |
tree | a16aeaa5dcafc967645d53cb8f86bb0b3f87784b /src/corelib | |
parent | befb7bec1b87d559ef6e72ee5944382a1fe6b39f (diff) | |
download | Qt-6a14ae66503266d812374e25548a455e26c7608d.zip Qt-6a14ae66503266d812374e25548a455e26c7608d.tar.gz Qt-6a14ae66503266d812374e25548a455e26c7608d.tar.bz2 |
SPI_GETPLATFORMTYPE not defined for Windows Embedded 7
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/io/qfsfileengine_win.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/corelib/io/qfsfileengine_win.cpp b/src/corelib/io/qfsfileengine_win.cpp index c27a424..3f11c39 100644 --- a/src/corelib/io/qfsfileengine_win.cpp +++ b/src/corelib/io/qfsfileengine_win.cpp @@ -69,6 +69,10 @@ #define SECURITY_WIN32 #include <security.h> +#ifndef SPI_GETPLATFORMTYPE +#define SPI_GETPLATFORMTYPE 257 +#endif + #ifndef _INTPTR_T_DEFINED #ifdef _WIN64 typedef __int64 intptr_t; |