summaryrefslogtreecommitdiff
path: root/base/windows_.h
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2013-07-23 16:24:19 +0100
committerChris Liddell <chris.liddell@artifex.com>2015-07-20 18:21:17 +0100
commit6948650efd3fb9e2a70b8cf16aca57e9d0b7eb0a (patch)
tree5c2a1c671c1d4521f8a770d1e69e3d4342718030 /base/windows_.h
parent7fd9e0be26e67c36f87733bc89ea07dc26d9f839 (diff)
downloadghostpdl-6948650efd3fb9e2a70b8cf16aca57e9d0b7eb0a.tar.gz
Commit of build_consolidation branch
Squashed into one commit (see branch for details of the evolution of the branch). This brings gpcl6 and gxps into the Ghostscript build system, and a shared set of graphics library object files for all the interpreters. Also, brings the same configuration options to the pcl and xps products as we have for Ghostscript.
Diffstat (limited to 'base/windows_.h')
-rw-r--r--base/windows_.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/base/windows_.h b/base/windows_.h
new file mode 100644
index 000000000..c1f1474b4
--- /dev/null
+++ b/base/windows_.h
@@ -0,0 +1,65 @@
+/* Copyright (C) 2001-2012 Artifex Software, Inc.
+ All Rights Reserved.
+
+ This software is provided AS-IS with no warranty, either express or
+ implied.
+
+ This software is distributed under license and may not be copied,
+ modified or distributed except as expressly authorized under the terms
+ of the license contained in the file LICENSE in this distribution.
+
+ Refer to licensing information at http://www.artifex.com or contact
+ Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
+ CA 94903, U.S.A., +1(415)492-9861, for further information.
+*/
+
+
+/* Wrapper for windows.h */
+
+#ifndef windows__INCLUDED
+# define windows__INCLUDED
+
+/* This is a good place to define GS_NO_UTF8 */
+
+#define STRICT
+#ifdef METRO
+#include <winapifamily.h>
+#endif
+#include <windows.h>
+#include <process.h>
+
+/* Unicode/UTF-8 wrappers that we provide */
+BOOL gp_OpenPrinter(char *device, LPHANDLE printer);
+#ifndef GS_NO_UTF8
+int utf8_to_wchar(wchar_t *out, const char *in);
+int wchar_to_utf8(char *out, const wchar_t *in);
+#endif
+
+#ifdef __WATCOMC__
+typedef RGBQUAD FAR * LPRGBQUAD;
+ /* Watcom's _beginthread takes an extra stack_bottom argument. */
+# define BEGIN_THREAD(proc, stksize, data)\
+ _beginthread(proc, NULL, stksize, data)
+#else
+# define BEGIN_THREAD(proc, stksize, data)\
+ _beginthread(proc, stksize, data)
+ /* Define null equivalents of the Watcom 32-to-16-bit glue. */
+# define AllocAlias16(ptr) ((DWORD)(ptr))
+# define FreeAlias16(dword) /* */
+# define MK_FP16(fp32) ((DWORD)(fp32))
+# define MK_FP32(fp16) (fp16)
+# define GetProc16(proc, ptype) (proc)
+# define ReleaseProc16(cbp) /* */
+#endif
+
+/* Substitute for special "far" library procedures under Win32. */
+#ifdef __WIN32__
+# undef _fstrtok
+# define _fstrtok(str, set) strtok(str, set)
+#endif
+
+#if defined(__BORLANDC__)
+# define exception_code() __exception_code
+#endif
+
+#endif /* windows__INCLUDED */