mkspecs/common/wince/qplatformdefs.h
changeset 0 1918ee327afb
child 3 41300fa6a67c
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 ** All rights reserved.
       
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
       
     6 **
       
     7 ** This file is part of the qmake spec of the Qt Toolkit.
       
     8 **
       
     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
       
    14 ** this package.
       
    15 **
       
    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.
       
    23 **
       
    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.
       
    27 **
       
    28 ** If you have questions regarding the use of this file, please contact
       
    29 ** Nokia at qt-info@nokia.com.
       
    30 **
       
    31 **
       
    32 **
       
    33 **
       
    34 **
       
    35 **
       
    36 **
       
    37 **
       
    38 ** $QT_END_LICENSE$
       
    39 **
       
    40 ****************************************************************************/
       
    41 
       
    42 #ifndef QPLATFORMDEFS_H
       
    43 #define QPLATFORMDEFS_H
       
    44 
       
    45 #ifdef UNICODE
       
    46 #ifndef _UNICODE
       
    47 #define _UNICODE
       
    48 #endif
       
    49 #endif
       
    50 
       
    51 // Get Qt defines/settings
       
    52 
       
    53 #include "qglobal.h"
       
    54 #include "qfunctions_wince.h"
       
    55 
       
    56 #define _POSIX_
       
    57 #include <limits.h>
       
    58 #undef _POSIX_
       
    59 
       
    60 #include <tchar.h>
       
    61 #include <stdio.h>
       
    62 #include <stdlib.h>
       
    63 #include <windows.h>
       
    64 
       
    65 #define Q_FS_FAT
       
    66 #ifdef QT_LARGEFILE_SUPPORT
       
    67 #define QT_STATBUF		struct _stati64		// non-ANSI defs
       
    68 #define QT_STATBUF4TSTAT	struct _stati64		// non-ANSI defs
       
    69 #define QT_STAT			::_stati64
       
    70 #define QT_FSTAT		::_fstati64
       
    71 #else
       
    72 #define QT_STATBUF		struct stat		// non-ANSI defs
       
    73 #define QT_STATBUF4TSTAT	struct stat		// non-ANSI defs
       
    74 #define QT_STAT			::qt_wince_stat
       
    75 #define QT_FSTAT		::qt_wince__fstat
       
    76 #endif
       
    77 #define QT_STAT_REG		_S_IFREG
       
    78 #define QT_STAT_DIR		_S_IFDIR
       
    79 #define QT_STAT_MASK		_S_IFMT
       
    80 #if defined(_S_IFLNK)
       
    81 #  define QT_STAT_LNK		_S_IFLNK
       
    82 #endif
       
    83 #define QT_FILENO		::qt_wince___fileno
       
    84 #define QT_OPEN			::qt_wince_open
       
    85 #define QT_CLOSE		::qt_wince__close
       
    86 #ifdef QT_LARGEFILE_SUPPORT
       
    87 #define QT_LSEEK		::_lseeki64
       
    88 #define QT_TSTAT		::_tstati64
       
    89 #else
       
    90 #define QT_LSEEK		::qt_wince__lseek
       
    91 #define QT_TSTAT		::_tstat
       
    92 #endif
       
    93 #define QT_READ			::qt_wince__read
       
    94 #define QT_WRITE		::qt_wince__write
       
    95 #define QT_ACCESS		::qt_wince__access
       
    96 #define QT_GETCWD		::_getcwd
       
    97 #define QT_CHDIR		::_chdir
       
    98 #define QT_MKDIR		::qt_wince__mkdir
       
    99 #define QT_RMDIR		::qt_wince__rmdir
       
   100 #define QT_OPEN_RDONLY		_O_RDONLY
       
   101 #define QT_OPEN_WRONLY		_O_WRONLY
       
   102 #define QT_OPEN_RDWR		_O_RDWR
       
   103 #define QT_OPEN_CREAT		_O_CREAT
       
   104 #define QT_OPEN_TRUNC		_O_TRUNC
       
   105 #define QT_OPEN_APPEND		_O_APPEND
       
   106 # define QT_OPEN_TEXT		_O_TEXT
       
   107 # define QT_OPEN_BINARY		_O_BINARY
       
   108 
       
   109 #define QT_FOPEN                ::fopen
       
   110 #define QT_FSEEK                ::fseek
       
   111 #define QT_FTELL                ::ftell
       
   112 #define QT_FGETPOS              ::fgetpos
       
   113 #define QT_FSETPOS              ::fsetpos
       
   114 #define QT_FPOS_T               fpos_t
       
   115 #define QT_OFF_T                long
       
   116 
       
   117 #define QT_SIGNAL_ARGS		int
       
   118 
       
   119 #define QT_VSNPRINTF(buffer, count, format, arg) \
       
   120     _vsnprintf(buffer, count, format, arg)
       
   121 
       
   122 #define QT_SNPRINTF		::_snprintf
       
   123 
       
   124 # define F_OK	0
       
   125 # define X_OK	1
       
   126 # define W_OK	2
       
   127 # define R_OK	4
       
   128 
       
   129 typedef int mode_t;
       
   130 
       
   131 #endif // QPLATFORMDEFS_H