summaryrefslogtreecommitdiff
path: root/mkspecs/win32-borland/qplatformdefs.h
Unidiff
Diffstat (limited to 'mkspecs/win32-borland/qplatformdefs.h') (more/less context) (ignore whitespace changes)
-rw-r--r--mkspecs/win32-borland/qplatformdefs.h140
1 files changed, 140 insertions, 0 deletions
diff --git a/mkspecs/win32-borland/qplatformdefs.h b/mkspecs/win32-borland/qplatformdefs.h
new file mode 100644
index 0000000..5babada
--- a/dev/null
+++ b/mkspecs/win32-borland/qplatformdefs.h
@@ -0,0 +1,140 @@
1#ifndef QPLATFORMDEFS_H
2#define QPLATFORMDEFS_H
3
4#ifdef UNICODE
5#ifndef _UNICODE
6#define _UNICODE
7#endif
8#endif
9
10// Get Qt defines/settings
11
12#include "qglobal.h"
13#define Q_FS_FAT
14
15#define _POSIX_
16#include <limits.h>
17#undef _POSIX_
18
19#include <tchar.h>
20#include <io.h>
21#include <direct.h>
22#include <stdio.h>
23#include <fcntl.h>
24#include <errno.h>
25#include <sys/stat.h>
26#include <dos.h>
27#include <stdlib.h>
28#include <windows.h>
29
30#if __BORLANDC__ >= 0x550
31#ifdef QT_LARGE_FILE_SUPPORT
32 #define QT_STATBUF struct stati64 // non-ANSI defs
33 #define QT_STATBUF4TSTAT struct _stati64 // non-ANSI defs
34 #define QT_STAT ::stati64
35 #define QT_FSTAT ::fstati64
36#else
37 #define QT_STATBUF struct stat // non-ANSI defs
38 #define QT_STATBUF4TSTAT struct _stat // non-ANSI defs
39 #define QT_STAT ::stat
40 #define QT_FSTAT ::fstat
41#endif
42 # define QT_STAT_REG _S_IFREG
43 # define QT_STAT_DIR _S_IFDIR
44 # define QT_STAT_MASK _S_IFMT
45# if defined(_S_IFLNK)
46 # define QT_STAT_LNK _S_IFLNK
47# endif
48 # define QT_FILENO _fileno
49 # define QT_OPEN ::open
50 # define QT_CLOSE ::_close
51#ifdef QT_LARGE_FILE_SUPPORT
52 #define QT_LSEEK ::_lseeki64
53 #define QT_TSTAT ::_tstati64
54#else
55 #define QT_LSEEK ::_lseek
56 #define QT_TSTAT ::_tstat
57#endif
58 # define QT_READ ::_read
59 # define QT_WRITE ::_write
60 # define QT_ACCESS ::_access
61 # define QT_GETCWD ::_getcwd
62 # define QT_CHDIR ::chdir
63 # define QT_MKDIR ::_mkdir
64 # define QT_RMDIR ::_rmdir
65 # define QT_OPEN_RDONLY _O_RDONLY
66 # define QT_OPEN_WRONLY _O_WRONLY
67 # define QT_OPEN_RDWR _O_RDWR
68 # define QT_OPEN_CREAT _O_CREAT
69 # define QT_OPEN_TRUNC _O_TRUNC
70 # define QT_OPEN_APPEND _O_APPEND
71# if defined(O_TEXT)
72 # define QT_OPEN_TEXT _O_TEXT
73 # define QT_OPEN_BINARY_O_BINARY
74# endif
75 #else // all other systems
76#ifdef QT_LARGE_FILE_SUPPORT
77 #define QT_STATBUF struct stati64 // non-ANSI defs
78 #define QT_STATBUF4TSTAT struct stati64 // non-ANSI defs
79 #define QT_STAT ::stati64
80 #define QT_FSTAT ::fstati64
81#else
82 #define QT_STATBUF struct stat // non-ANSI defs
83 #define QT_STATBUF4TSTAT struct stat // non-ANSI defs
84 #define QT_STAT ::stat
85 #define QT_FSTAT ::fstat
86#endif
87 # define QT_STAT_REG S_IFREG
88 # define QT_STAT_DIR S_IFDIR
89 # define QT_STAT_MASK S_IFMT
90# if defined(S_IFLNK)
91 # define QT_STAT_LNK S_IFLNK
92# endif
93 # define QT_FILENO fileno
94 # define QT_OPEN ::open
95 # define QT_CLOSE ::close
96#ifdef QT_LARGE_FILE_SUPPORT
97 #define QT_LSEEK ::lseeki64
98 #define QT_TSTAT ::tstati64
99#else
100 #define QT_LSEEK ::lseek
101 #define QT_TSTAT ::tstat
102#endif
103 # define QT_READ ::read
104 # define QT_WRITE ::write
105 # define QT_ACCESS ::access
106# if defined(Q_OS_OS2EMX)
107// This is documented in the un*x to OS/2-EMX Porting FAQ:
108 // http://homepages.tu-darmstadt.de/~st002279/os2/porting.html
109 # define QT_GETCWD ::_getcwd2
110 # define QT_CHDIR ::_chdir2
111# else
112 # define QT_GETCWD ::getcwd
113 # define QT_CHDIR ::chdir
114# endif
115 # define QT_MKDIR ::mkdir
116 # define QT_RMDIR ::rmdir
117 # define QT_OPEN_RDONLY O_RDONLY
118 # define QT_OPEN_WRONLY O_WRONLY
119 # define QT_OPEN_RDWR O_RDWR
120 # define QT_OPEN_CREAT O_CREAT
121 # define QT_OPEN_TRUNC O_TRUNC
122 # define QT_OPEN_APPEND O_APPEND
123# if defined(O_TEXT)
124 # define QT_OPEN_TEXT O_TEXT
125 # define QT_OPEN_BINARYO_BINARY
126# endif
127#endif
128
129 #define QT_SIGNAL_ARGS int
130
131 #define QT_VSNPRINTF ::_vsnprintf
132 #define QT_SNPRINTF ::_snprintf
133
134 # define F_OK0
135 # define X_OK1
136 # define W_OK2
137 # define R_OK4
138
139
140#endif // QPLATFORMDEFS_H