blob: a9f5d36b9d3e0cfd8a33c908c889a55f52afc14a [file] [log] [blame]
cristyb2b54812012-02-19 18:15:55 +00001/*
Cristy7ce65e72015-12-12 18:03:16 -05002 Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization
cristyb2b54812012-02-19 18:15:55 +00003 dedicated to making software imaging solutions freely available.
cristyd0090942015-03-04 01:03:50 +00004
cristyb2b54812012-02-19 18:15:55 +00005 You may not use this file except in compliance with the License.
6 obtain a copy of the License at
cristyd0090942015-03-04 01:03:50 +00007
cristyb2b54812012-02-19 18:15:55 +00008 http://www.imagemagick.org/script/license.php
cristyd0090942015-03-04 01:03:50 +00009
cristyb2b54812012-02-19 18:15:55 +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 MagickWand method attributes.
17*/
18#ifndef _MAGICKWAND_METHOD_ATTRIBUTE_H
19#define _MAGICKWAND_METHOD_ATTRIBUTE_H
20
21#if defined(__cplusplus) || defined(c_plusplus)
22extern "C" {
23#endif
24
25#if defined(__BORLANDC__) && defined(_DLL)
26# pragma message("BCBMagick lib DLL export interface")
27# define _MAGICKDLL_
28# define _MAGICKLIB_
29# define MAGICKCORE_MODULES_SUPPORT
30# undef MAGICKCORE_BUILD_MODULES
31#endif
32
cristy87110812013-04-03 00:40:44 +000033#if defined(MAGICKWAND_WINDOWS_SUPPORT) && !defined(__CYGWIN__)
34# define WandPrivate
cristyb2b54812012-02-19 18:15:55 +000035# if defined(_MT) && defined(_DLL) && !defined(_MAGICKDLL_) && !defined(_LIB)
36# define _MAGICKDLL_
37# endif
38# if defined(_MAGICKDLL_)
39# if defined(_VISUALC_)
40# pragma warning( disable: 4273 ) /* Disable the dll linkage warnings */
41# endif
42# if !defined(_MAGICKLIB_)
cristy483eeb62014-01-12 22:12:44 +000043# if defined(__clang__) || defined(__GNUC__)
cristy87110812013-04-03 00:40:44 +000044# define WandExport __attribute__ ((dllimport))
cristyb2b54812012-02-19 18:15:55 +000045# else
cristy87110812013-04-03 00:40:44 +000046# define WandExport __declspec(dllimport)
cristyb2b54812012-02-19 18:15:55 +000047# endif
48# if defined(_VISUALC_)
49# pragma message( "MagickCore lib DLL import interface" )
50# endif
51# else
cristy483eeb62014-01-12 22:12:44 +000052# if defined(__clang__) || defined(__GNUC__)
cristy87110812013-04-03 00:40:44 +000053# define WandExport __attribute__ ((dllexport))
cristyb2b54812012-02-19 18:15:55 +000054# else
cristy87110812013-04-03 00:40:44 +000055# define WandExport __declspec(dllexport)
cristyb2b54812012-02-19 18:15:55 +000056# endif
57# if defined(_VISUALC_)
58# pragma message( "MagickCore lib DLL export interface" )
59# endif
60# endif
61# else
cristy87110812013-04-03 00:40:44 +000062# define WandExport
cristyb2b54812012-02-19 18:15:55 +000063# if defined(_VISUALC_)
64# pragma message( "MagickCore lib static interface" )
65# endif
66# endif
67
68# if defined(_DLL) && !defined(_LIB)
69# if defined(_VISUALC_)
70# pragma message( "MagickCore module DLL export interface" )
71# endif
72# else
73# if defined(_VISUALC_)
74# pragma message( "MagickCore module static interface" )
75# endif
76
77# endif
cristyb2b54812012-02-19 18:15:55 +000078# if defined(_VISUALC_)
79# pragma warning(disable : 4018)
80# pragma warning(disable : 4068)
81# pragma warning(disable : 4244)
82# pragma warning(disable : 4142)
83# pragma warning(disable : 4800)
84# pragma warning(disable : 4786)
85# pragma warning(disable : 4996)
86# endif
87#else
cristy483eeb62014-01-12 22:12:44 +000088# if defined(__clang__) || (__GNUC__ >= 4)
cristy87110812013-04-03 00:40:44 +000089# define WandExport __attribute__ ((visibility ("default")))
90# define WandPrivate __attribute__ ((visibility ("hidden")))
cristyb2b54812012-02-19 18:15:55 +000091# else
cristy87110812013-04-03 00:40:44 +000092# define WandExport
93# define WandPrivate
cristyb2b54812012-02-19 18:15:55 +000094# endif
cristyb2b54812012-02-19 18:15:55 +000095#endif
96
cristye1c94d92015-06-28 12:16:33 +000097#define MagickWandSignature 0xabacadabUL
cristy151b66d2015-04-15 10:50:31 +000098#if !defined(MagickPathExtent)
99# define MagickPathExtent 4096
cristyb2b54812012-02-19 18:15:55 +0000100#endif
101
102#if defined(MAGICKCORE_HAVE___ATTRIBUTE__)
cristy87110812013-04-03 00:40:44 +0000103# define wand_aligned(x) __attribute__((aligned(x)))
104# define wand_attribute __attribute__
105# define wand_unused(x) wand_unused_ ## x __attribute__((unused))
Cristy9125cd52015-09-17 20:16:13 -0400106#elif defined( __VMS )
107# define wand_aligned(x) /* nothing */
108# define wand_attribute(x) /* nothing */
109# define wand_unused(x) x
cristyb2b54812012-02-19 18:15:55 +0000110#else
cristy87110812013-04-03 00:40:44 +0000111# define wand_aligned(x) __declspec(align(x))
112# define wand_attribute(x) /* nothing */
113# define wand_unused(x) x
cristyb2b54812012-02-19 18:15:55 +0000114#endif
115
cristye01f3ad2014-12-20 20:37:42 +0000116#if !defined(__clang__) && (((__GNUC__) > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)))
cristy87110812013-04-03 00:40:44 +0000117# define wand_alloc_size(x) __attribute__((__alloc_size__(x)))
118# define wand_alloc_sizes(x,y) __attribute__((__alloc_size__(x,y)))
cristyb2b54812012-02-19 18:15:55 +0000119#else
cristy87110812013-04-03 00:40:44 +0000120# define wand_alloc_size(x) /* nothing */
121# define wand_alloc_sizes(x,y) /* nothing */
cristye01f3ad2014-12-20 20:37:42 +0000122#endif
123
124#if defined(__clang__) || (((__GNUC__) > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)))
125# define wand_cold_spot __attribute__((__cold__))
126# define wand_hot_spot __attribute__((__hot__))
127#else
cristy87110812013-04-03 00:40:44 +0000128# define wand_cold_spot
129# define wand_hot_spot
cristyb2b54812012-02-19 18:15:55 +0000130#endif
cristyb2b54812012-02-19 18:15:55 +0000131
132#if defined(__cplusplus) || defined(c_plusplus)
133}
134#endif
135
136#endif