blob: 521c6821341f8090a33901c457f344317b2d96b3 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy1454be72011-12-19 01:52:48 +00002 Copyright 1999-2012 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
cristy2c5fc272012-02-22 01:27:46 +000025#include "MagickCore/geometry.h"
26
cristy30603ff2011-10-07 00:43:07 +000027#if defined(MAGICKCORE_WINDOWS_SUPPORT)
cristy2c5fc272012-02-22 01:27:46 +000028typedef struct _GhostInfo
29 GhostInfo_;
cristydaeba5e2011-10-13 17:32:44 +000030
31extern MagickExport char
32 **NTArgvToUTF8(const int argc,wchar_t **);
33
cristy2c5fc272012-02-22 01:27:46 +000034extern MagickExport const GhostInfo_
cristydaeba5e2011-10-13 17:32:44 +000035 *NTGhostscriptDLLVectors(void);
36
37extern MagickExport int
cristy2c5fc272012-02-22 01:27:46 +000038 NTGhostscriptUnLoadDLL(void);
cristydaeba5e2011-10-13 17:32:44 +000039
cristy3ed852e2009-09-05 21:47:34 +000040extern MagickExport void
cristy417d8452011-10-13 17:09:49 +000041 NTErrorHandler(const ExceptionType,const char *,const char *),
42 NTWarningHandler(const ExceptionType,const char *,const char *);
cristy2c5fc272012-02-22 01:27:46 +000043#endif
cristy3ed852e2009-09-05 21:47:34 +000044
45#if defined(__cplusplus) || defined(c_plusplus)
46}
cristy2c5fc272012-02-22 01:27:46 +000047#endif
cristy3ed852e2009-09-05 21:47:34 +000048
cristy2c5fc272012-02-22 01:27:46 +000049#endif