blob: c943ed5711cc0e0c5fe26d1cb59ac754e97966a1 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
cristy7e41fe82010-12-04 23:12:08 +00002 Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization
cristy3ed852e2009-09-05 21:47:34 +00003 dedicated to making software imaging solutions freely available.
cristy30603ff2011-10-07 00:43:07 +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
cristy30603ff2011-10-07 00:43:07 +00007
cristy3ed852e2009-09-05 21:47:34 +00008 http://www.imagemagick.org/script/license.php
cristy30603ff2011-10-07 00:43:07 +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
cristy0740a982011-10-13 15:01:01 +000025#include "MagickCore/geometry.h"
cristy3ed852e2009-09-05 21:47:34 +000026
cristy30603ff2011-10-07 00:43:07 +000027#if defined(MAGICKCORE_WINDOWS_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +000028extern MagickExport void
cristy30603ff2011-10-07 00:43:07 +000029 *CropImageToHBITMAP(Image *,const RectangleInfo *,ExceptionInfo *),
30 *ImageToHBITMAP(Image *);
31#endif
cristy3ed852e2009-09-05 21:47:34 +000032
33#if defined(__cplusplus) || defined(c_plusplus)
34}
cristy30603ff2011-10-07 00:43:07 +000035#endif
cristy3ed852e2009-09-05 21:47:34 +000036
cristy30603ff2011-10-07 00:43:07 +000037#endif