MagickCore  6.9.12-13
Convert, Edit, Or Compose Bitmap Images
nt-base.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2021 ImageMagick Studio LLC, a non-profit organization
3  dedicated to making software imaging solutions freely available.
4 
5  You may not use this file except in compliance with the License. You may
6  obtain a copy of the License at
7 
8  https://imagemagick.org/script/license.php
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  MagickCore Windows NT utility methods.
17 */
18 #ifndef MAGICKCORE_NT_BASE_H
19 #define MAGICKCORE_NT_BASE_H
20 
21 #include "magick/exception.h"
22 #include "magick/geometry.h"
23 
24 #if defined(__cplusplus) || defined(c_plusplus)
25 extern "C" {
26 #endif
27 
28 #if defined(MAGICKCORE_WINDOWS_SUPPORT)
29 
30 #define WIN32_LEAN_AND_MEAN
31 #define VC_EXTRALEAN
32 #define _CRT_SECURE_NO_DEPRECATE 1
33 #include <windows.h>
34 #include <wchar.h>
35 #include <winuser.h>
36 #include <wingdi.h>
37 #include <io.h>
38 #include <process.h>
39 #include <errno.h>
40 #include <malloc.h>
41 #include <sys/utime.h>
42 #if defined(_DEBUG) && !defined(__MINGW32__)
43 #include <crtdbg.h>
44 #endif
45 
46 #define PROT_READ 0x01
47 #define PROT_WRITE 0x02
48 #define MAP_SHARED 0x01
49 #define MAP_PRIVATE 0x02
50 #define MAP_ANONYMOUS 0x20
51 #define F_OK 0
52 #define R_OK 4
53 #define W_OK 2
54 #define RW_OK 6
55 #define _SC_PAGE_SIZE 1
56 #define _SC_PHYS_PAGES 2
57 #define _SC_OPEN_MAX 3
58 #if !defined(SSIZE_MAX)
59 # ifdef _WIN64
60 # define SSIZE_MAX LLONG_MAX
61 # else
62 # define SSIZE_MAX LONG_MAX
63 # endif
64 #endif
65 
66 /*
67  _MSC_VER values:
68  1100 MSVC 5.0
69  1200 MSVC 6.0
70  1300 MSVC 7.0 Visual C++ .NET 2002
71  1310 Visual c++ .NET 2003
72  1400 Visual C++ 2005
73  1500 Visual C++ 2008
74  1600 Visual C++ 2010
75  1700 Visual C++ 2012
76  1800 Visual C++ 2013
77  1900 Visual C++ 2015
78 */
79 
80 #if !defined(chsize)
81 # if defined(__BORLANDC__)
82 # define chsize(file,length) chsize(file,length)
83 # else
84 # define chsize(file,length) _chsize(file,length)
85 # endif
86 #endif
87 
88 #if !defined(access)
89 #if defined(_VISUALC_) && (_MSC_VER >= 1400)
90 # define access(path,mode) _access_s(path,mode)
91 #endif
92 #endif
93 #if !defined(chdir)
94 # define chdir _chdir
95 #endif
96 #if !defined(close)
97 # define close _close
98 #endif
99 #if !defined(closedir)
100 # define closedir(directory) NTCloseDirectory(directory)
101 #endif
102 #if !defined(fdopen)
103 # define fdopen _fdopen
104 #endif
105 #if !defined(fileno)
106 # define fileno _fileno
107 #endif
108 #if !defined(freelocale)
109 # define freelocale _free_locale
110 #endif
111 #if !defined(fseek) && !defined(__MINGW32__)
112 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && \
113  !(defined(_MSC_VER) && (_MSC_VER < 1400)) && \
114  !(defined(__MSVCRT_VERSION__) && (__MSVCRT_VERSION__ < 0x800))
115 # define fseek _fseeki64
116 #endif
117 #endif
118 #if !defined(fstat) && !defined(__BORLANDC__)
119 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && \
120  !(defined(_MSC_VER) && (_MSC_VER < 1400)) && \
121  !(defined(__MSVCRT_VERSION__) && (__MSVCRT_VERSION__ < 0x800))
122 # define fstat _fstati64
123 #else
124 # define fstat _fstat
125 #endif
126 #endif
127 #if !defined(fsync)
128 # define fsync _commit
129 #endif
130 #if !defined(ftell) && !defined(__MINGW32__)
131 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && \
132  !(defined(_MSC_VER) && (_MSC_VER < 1400)) && \
133  !(defined(__MSVCRT_VERSION__) && (__MSVCRT_VERSION__ < 0x800))
134 # define ftell _ftelli64
135 #endif
136 #endif
137 #if !defined(ftruncate)
138 # define ftruncate(file,length) NTTruncateFile(file,length)
139 #endif
140 #if !defined(getcwd)
141 # define getcwd _getcwd
142 #endif
143 #if !defined(getpid)
144 # define getpid _getpid
145 #endif
146 #if !defined(hypot)
147 # define hypot _hypot
148 #endif
149 #if !defined(inline)
150 # define inline __inline
151 #endif
152 #if !defined(isatty)
153 # define isatty _isatty
154 #endif
155 #if !defined(locale_t)
156 #define locale_t _locale_t
157 #endif
158 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && \
159  !(defined(_MSC_VER) && (_MSC_VER < 1400)) && \
160  !(defined(__MSVCRT_VERSION__) && (__MSVCRT_VERSION__ < 0x800))
161 #if !defined(lseek)
162 # define lseek _lseeki64
163 #endif
164 #else
165 #if !defined(lseek)
166 # define lseek _lseek
167 #endif
168 #endif
169 #if !defined(MAGICKCORE_LTDL_DELEGATE)
170 #if !defined(lt_dlclose)
171 # define lt_dlclose(handle) NTCloseLibrary(handle)
172 #endif
173 #if !defined(lt_dlerror)
174 # define lt_dlerror() NTGetLibraryError()
175 #endif
176 #if !defined(lt_dlexit)
177 # define lt_dlexit() NTExitLibrary()
178 #endif
179 #if !defined(lt_dlinit)
180 # define lt_dlinit() NTInitializeLibrary()
181 #endif
182 #if !defined(lt_dlopen)
183 # define lt_dlopen(filename) NTOpenLibrary(filename)
184 #endif
185 #if !defined(lt_dlsetsearchpath)
186 # define lt_dlsetsearchpath(path) NTSetSearchPath(path)
187 #endif
188 #if !defined(lt_dlsym)
189 # define lt_dlsym(handle,name) NTGetLibrarySymbol(handle,name)
190 #endif
191 #endif
192 #if !defined(mkdir)
193 # define mkdir _mkdir
194 #endif
195 #if !defined(mmap)
196 # define MAGICKCORE_HAVE_MMAP 1
197 # define mmap(address,length,protection,access,file,offset) \
198  NTMapMemory(address,length,protection,access,file,offset)
199 #endif
200 #if !defined(munmap)
201 # define munmap(address,length) NTUnmapMemory(address,length)
202 #endif
203 #if !defined(opendir)
204 # define opendir(directory) NTOpenDirectory(directory)
205 #endif
206 #if !defined(open)
207 # define open _open
208 #endif
209 #if !defined(pclose)
210 # define pclose _pclose
211 #endif
212 #if !defined(popen)
213 # define popen _popen
214 #endif
215 #if !defined(fprintf_l)
216 #define fprintf_l _fprintf_s_l
217 #endif
218 #if !defined(read)
219 # define read(fd,buffer,count) _read(fd,buffer,(unsigned int) count)
220 #endif
221 #if !defined(readdir)
222 # define readdir(directory) NTReadDirectory(directory)
223 #endif
224 #if !defined(setmode)
225 # define setmode _setmode
226 #endif
227 #if !defined(spawnvp)
228 # define spawnvp _spawnvp
229 #endif
230 #if !defined(strtod_l)
231 #define strtod_l _strtod_l
232 #endif
233 #if !defined(stat) && !defined(__BORLANDC__)
234 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && \
235  !(defined(_MSC_VER) && (_MSC_VER < 1400)) && \
236  !(defined(__MSVCRT_VERSION__) && (__MSVCRT_VERSION__ < 0x800))
237 # define stat _stati64
238 #else
239 # define stat _stat
240 #endif
241 #endif
242 #if !defined(strcasecmp)
243 # define strcasecmp _stricmp
244 #endif
245 #if !defined(strncasecmp)
246 # define strncasecmp _strnicmp
247 #endif
248 #if !defined(sysconf)
249 # define sysconf(name) NTSystemConfiguration(name)
250 # define MAGICKCORE_HAVE_SYSCONF 1
251 #endif
252 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && \
253  !(defined(_MSC_VER) && (_MSC_VER < 1400)) && \
254  !(defined(__MSVCRT_VERSION__) && (__MSVCRT_VERSION__ < 0x800))
255 # define tell _telli64
256 #else
257 # define tell _tell
258 #endif
259 #if !defined(tempnam)
260 # define tempnam _tempnam_s
261 #endif
262 #if !defined(tolower_l)
263 #define tolower_l _tolower_l
264 #endif
265 #if !defined(toupper_l)
266 #define toupper_l _toupper_l
267 #endif
268 #if !defined(umask)
269 # define umask _umask
270 #endif
271 #if !defined(unlink)
272 # define unlink _unlink
273 #endif
274 #if !defined(utime)
275 # define utime _utime
276 #endif
277 #if !defined(vfprintf_l)
278 #define vfprintf_l _vfprintf_l
279 #endif
280 #if !defined(vsnprintf)
281 #if !defined(_MSC_VER) || (defined(_MSC_VER) && _MSC_VER < 1500)
282 #define vsnprintf _vsnprintf
283 #endif
284 #endif
285 #if !defined(vsnprintf_l)
286 #define vsnprintf_l _vsnprintf_l
287 #endif
288 #if !defined(write)
289 # define write(fd,buffer,count) _write(fd,buffer,(unsigned int) count)
290 #endif
291 #if !defined(wstat) && !defined(__BORLANDC__)
292 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && \
293  !(defined(_MSC_VER) && (_MSC_VER < 1400)) && \
294  !(defined(__MSVCRT_VERSION__) && (__MSVCRT_VERSION__ < 0x800))
295 # define wstat _wstati64
296 #else
297 # define wstat _wstat
298 #endif
299 #endif
300 
301 #if defined(__BORLANDC__)
302 #undef _O_RANDOM
303 #define _O_RANDOM 0
304 #undef _O_SEQUENTIAL
305 #define _O_SEQUENTIAL 0
306 #undef _O_SHORT_LIVED
307 #define _O_SHORT_LIVED 0
308 #undef _O_TEMPORARY
309 #define _O_TEMPORARY 0
310 #endif
311 
312 #undef gettimeofday
313 
314 typedef struct _GhostInfo
315  GhostInfo_;
316 
317 extern MagickExport char
318  **NTArgvToUTF8(const int argc,wchar_t **);
319 
320 extern MagickExport const GhostInfo_
321  *NTGhostscriptDLLVectors(void);
322 
323 extern MagickExport int
324  NTGhostscriptUnLoadDLL(void);
325 
326 extern MagickExport void
327  NTErrorHandler(const ExceptionType,const char *,const char *),
328  NTWarningHandler(const ExceptionType,const char *,const char *);
329 
330 #endif
331 
332 #if defined(__cplusplus) || defined(c_plusplus)
333 }
334 #endif
335 
336 #endif
ExceptionType
Definition: exception.h:28
Definition: delegate-private.h:54
#define MagickExport
Definition: method-attribute.h:80