blob: 2a770b733eaee564e5a272bd7f8ab77e870b0a8a [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy45ef08f2012-12-07 13:13:34 +00002 Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003 dedicated to making software imaging solutions freely available.
cristy2c5fc272012-02-22 01:27:46 +00004
cristy3ed852e2009-09-05 21:47:34 +00005 You may not use this file except in compliance with the License.
6 obtain a copy of the License at
cristy2c5fc272012-02-22 01:27:46 +00007
cristy3ed852e2009-09-05 21:47:34 +00008 http://www.imagemagick.org/script/license.php
cristy2c5fc272012-02-22 01:27:46 +00009
cristy3ed852e2009-09-05 21:47:34 +000010 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#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
cristy9da153b2012-09-29 13:18:58 +000025#include "MagickCore/exception.h"
cristy2c5fc272012-02-22 01:27:46 +000026#include "MagickCore/geometry.h"
27
cristy30603ff2011-10-07 00:43:07 +000028#if defined(MAGICKCORE_WINDOWS_SUPPORT)
cristy2c5fc272012-02-22 01:27:46 +000029typedef struct _GhostInfo
30 GhostInfo_;
cristydaeba5e2011-10-13 17:32:44 +000031
32extern MagickExport char
33 **NTArgvToUTF8(const int argc,wchar_t **);
34
cristy2c5fc272012-02-22 01:27:46 +000035extern MagickExport const GhostInfo_
cristydaeba5e2011-10-13 17:32:44 +000036 *NTGhostscriptDLLVectors(void);
37
38extern MagickExport int
cristy2c5fc272012-02-22 01:27:46 +000039 NTGhostscriptUnLoadDLL(void);
cristydaeba5e2011-10-13 17:32:44 +000040
cristy3ed852e2009-09-05 21:47:34 +000041extern MagickExport void
cristy417d8452011-10-13 17:09:49 +000042 NTErrorHandler(const ExceptionType,const char *,const char *),
43 NTWarningHandler(const ExceptionType,const char *,const char *);
cristy2c5fc272012-02-22 01:27:46 +000044#endif
cristy3ed852e2009-09-05 21:47:34 +000045
46#if defined(__cplusplus) || defined(c_plusplus)
47}
cristy2c5fc272012-02-22 01:27:46 +000048#endif
cristy3ed852e2009-09-05 21:47:34 +000049
cristy2c5fc272012-02-22 01:27:46 +000050#endif