Eneboo - Documentación para desarrolladores
|
00001 #include <qglobal.h> 00002 #include <qconfig.h> 00003 00004 #ifndef QT_POINTER_SIZE 00005 # ifdef Q_OS_WIN32 00006 # define QT_POINTER_SIZE 4 00007 # elif Q_OS_WIN64 00008 # define QT_POINTER_SIZE 8 00009 # else 00010 # error This platform is unsupported 00011 # endif 00012 #endif /* QT_POINTER_SIZE */ 00013 00014 #define SQLITE_PTR_SZ QT_POINTER_SIZE 00015 00016 #ifdef UNICODE 00017 # undef UNICODE 00018 #endif 00019 00020 #ifdef Q_CC_MSVC 00021 # pragma warning(disable: 4018) 00022 # pragma warning(disable: 4761) 00023 #endif