1 /****************************************************************************
3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
7 ** This file is part of the qmake spec of the Qt Toolkit.
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file. Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights. These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
40 ****************************************************************************/
42 #ifndef QPLATFORMDEFS_H
43 #define QPLATFORMDEFS_H
51 // Get Qt defines/settings
70 #ifdef QT_LARGEFILE_SUPPORT
71 #define QT_STATBUF struct _stati64 // non-ANSI defs
72 #define QT_STATBUF4TSTAT struct _stati64 // non-ANSI defs
73 #define QT_STAT ::_stati64
74 #define QT_FSTAT ::_fstati64
76 #define QT_STATBUF struct _stat // non-ANSI defs
77 #define QT_STATBUF4TSTAT struct _stat // non-ANSI defs
78 #define QT_STAT ::_stat
79 #define QT_FSTAT ::_fstat
81 #define QT_STAT_REG _S_IFREG
82 #define QT_STAT_DIR _S_IFDIR
83 #define QT_STAT_MASK _S_IFMT
85 # define QT_STAT_LNK _S_IFLNK
87 #define QT_FILENO _fileno
88 #define QT_OPEN ::_open
89 #define QT_CLOSE ::_close
90 #ifdef QT_LARGEFILE_SUPPORT
91 #define QT_LSEEK ::_lseeki64
92 #define QT_TSTAT ::_tstati64
94 #define QT_LSEEK ::_lseek
95 #define QT_TSTAT ::_tstat
97 #define QT_READ ::_read
98 #define QT_WRITE ::_write
99 #define QT_ACCESS ::_access
100 #define QT_GETCWD ::_getcwd
101 #define QT_CHDIR ::_chdir
102 #define QT_MKDIR ::_mkdir
103 #define QT_RMDIR ::_rmdir
104 #define QT_OPEN_LARGEFILE 0
105 #define QT_OPEN_RDONLY _O_RDONLY
106 #define QT_OPEN_WRONLY _O_WRONLY
107 #define QT_OPEN_RDWR _O_RDWR
108 #define QT_OPEN_CREAT _O_CREAT
109 #define QT_OPEN_TRUNC _O_TRUNC
110 #define QT_OPEN_APPEND _O_APPEND
112 # define QT_OPEN_TEXT _O_TEXT
113 # define QT_OPEN_BINARY _O_BINARY
116 #include "../common/c89/qplatformdefs.h"
118 #if defined(QT_LARGEFILE_SUPPORT) && _MSC_VER > 1310
122 #define QT_FSEEK ::_fseeki64
123 #define QT_FTELL ::_ftelli64
126 #if defined(QT_LARGEFILE_SUPPORT)
128 #define QT_OFF_T __int64
131 #define QT_SIGNAL_ARGS int
134 # define QT_VSNPRINTF(buffer, count, format, arg) \
135 ::vsnprintf_s(buffer, count, count-1, format, arg)
137 # define QT_VSNPRINTF ::_vsnprintf
139 #define QT_SNPRINTF ::_snprintf
149 #endif // QPLATFORMDEFS_H