mkspecs/common/symbian/qplatformdefs.h
changeset 30 5dc02b23752f
parent 18 2f34d5167611
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
    82 #ifndef QT_NO_IPV6IFNAME
    82 #ifndef QT_NO_IPV6IFNAME
    83 #include <net/if.h>
    83 #include <net/if.h>
    84 #endif
    84 #endif
    85 #include <arpa/inet.h>
    85 #include <arpa/inet.h>
    86 
    86 
    87 #ifdef QT_LARGEFILE_SUPPORT
    87 #define QT_USE_XOPEN_LFS_EXTENSIONS
    88 #define QT_STATBUF              struct stat64
    88 // unset large file as symbian doesn't support it
    89 #define QT_STATBUF4TSTAT        struct stat64
    89 #undef QT_LARGEFILE_SUPPORT
    90 #define QT_STAT                 ::stat64
    90 #include "../posix/qplatformdefs.h"
    91 #define QT_FSTAT                ::fstat64
       
    92 #define QT_LSTAT                ::lstat64
       
    93 #define QT_OPEN                 ::open64
       
    94 #define QT_TRUNCATE             ::truncate64
       
    95 #define QT_FTRUNCATE            ::ftruncate64
       
    96 #define QT_LSEEK                ::lseek64
       
    97 #else
       
    98 #define QT_STATBUF              struct stat
       
    99 #define QT_STATBUF4TSTAT        struct stat
       
   100 #define QT_STAT                 ::stat
       
   101 #define QT_FSTAT                ::fstat
       
   102 #define QT_LSTAT                ::lstat
       
   103 #define QT_OPEN                 ::open
       
   104 #define QT_TRUNCATE             ::truncate
       
   105 #define QT_FTRUNCATE            ::ftruncate
       
   106 #define QT_LSEEK                ::lseek
       
   107 #endif
       
   108 
    91 
   109 #ifdef QT_LARGEFILE_SUPPORT
    92 #undef QT_OPEN_LARGEFILE
   110 #define QT_FOPEN                ::fopen64
    93 #undef QT_SOCKLEN_T
   111 #define QT_FSEEK                ::fseeko64
       
   112 #define QT_FTELL                ::ftello64
       
   113 #define QT_FGETPOS              ::fgetpos64
       
   114 #define QT_FSETPOS              ::fsetpos64
       
   115 #define QT_MMAP                 ::mmap64
       
   116 #define QT_FPOS_T               fpos64_t
       
   117 #define QT_OFF_T                off64_t
       
   118 #else
       
   119 #define QT_FOPEN                ::fopen
       
   120 #define QT_FSEEK                ::fseek
       
   121 #define QT_FTELL                ::ftell
       
   122 #define QT_FGETPOS              ::fgetpos
       
   123 #define QT_FSETPOS              ::fsetpos
       
   124 #define QT_MMAP                 ::mmap
       
   125 #define QT_FPOS_T               fpos_t
       
   126 #define QT_OFF_T                long
       
   127 #endif
       
   128 
    94 
   129 #define QT_STAT_REG		S_IFREG
    95 #define QT_OPEN_LARGEFILE       0
   130 #define QT_STAT_DIR		S_IFDIR
       
   131 #define QT_STAT_MASK		S_IFMT
       
   132 #define QT_STAT_LNK		S_IFLNK
       
   133 #define QT_SOCKET_CONNECT	::connect
       
   134 #define QT_SOCKET_BIND		::bind
       
   135 #define QT_FILENO		fileno
       
   136 #define QT_CLOSE		::close
       
   137 #define QT_READ			::read
       
   138 #define QT_WRITE		::write
       
   139 #define QT_ACCESS		::access
       
   140 #define QT_GETCWD		::getcwd
       
   141 #define QT_CHDIR		::chdir
       
   142 #define QT_MKDIR		::mkdir
       
   143 #define QT_RMDIR		::rmdir
       
   144 #define QT_OPEN_LARGEFILE	0
       
   145 #define QT_OPEN_RDONLY		O_RDONLY
       
   146 #define QT_OPEN_WRONLY		O_WRONLY
       
   147 #define QT_OPEN_RDWR		O_RDWR
       
   148 #define QT_OPEN_CREAT		O_CREAT
       
   149 #define QT_OPEN_TRUNC		O_TRUNC
       
   150 #define QT_OPEN_APPEND		O_APPEND
       
   151 
       
   152 #define QT_SIGNAL_RETTYPE	void
       
   153 #define QT_SIGNAL_ARGS		int
       
   154 #define QT_SIGNAL_IGNORE	SIG_IGN
       
   155 
    96 
   156 #if (defined(__GLIBC__) && (__GLIBC__ >= 2)) || defined(Q_OS_SYMBIAN)
    97 #if (defined(__GLIBC__) && (__GLIBC__ >= 2)) || defined(Q_OS_SYMBIAN)
   157 #define QT_SOCKLEN_T		socklen_t
    98 #define QT_SOCKLEN_T            socklen_t
   158 #else
    99 #else
   159 #define QT_SOCKLEN_T		int
   100 #define QT_SOCKLEN_T            int
   160 #endif
   101 #endif
   161 
       
   162 
   102 
   163 #if defined(__ISO_C_VISIBLE) && (__ISO_C_VISIBLE >= 1999)
   103 #if defined(__ISO_C_VISIBLE) && (__ISO_C_VISIBLE >= 1999)
   164 #define QT_SNPRINTF     ::snprintf
   104 #define QT_SNPRINTF     ::snprintf
   165 #define QT_VSNPRINTF    ::vsnprintf
   105 #define QT_VSNPRINTF    ::vsnprintf
   166 #endif
   106 #endif
   167 
   107 
   168 
       
   169 #endif // QPLATFORMDEFS_H
   108 #endif // QPLATFORMDEFS_H