|
MagickCore
6.7.5
|
00001 /* 00002 Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization 00003 dedicated to making software imaging solutions freely available. 00004 00005 You may not use this file except in compliance with the License. 00006 obtain a copy of the License at 00007 00008 http://www.imagemagick.org/script/license.php 00009 00010 Unless required by applicable law or agreed to in writing, software 00011 distributed under the License is distributed on an "AS IS" BASIS, 00012 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 See the License for the specific language governing permissions and 00014 limitations under the License. 00015 00016 MagickCore delegates private methods. 00017 */ 00018 #ifndef _MAGICKCORE_DELEGATE_PRIVATE_H 00019 #define _MAGICKCORE_DELEGATE_PRIVATE_H 00020 00021 #if defined(__cplusplus) || defined(c_plusplus) 00022 extern "C" { 00023 #endif 00024 00025 #if defined(MAGICKCORE_GS_DELEGATE) 00026 #include "ghostscript/iapi.h" 00027 #include "ghostscript/ierrors.h" 00028 #endif 00029 00030 #ifndef gs_main_instance_DEFINED 00031 # define gs_main_instance_DEFINED 00032 typedef struct gs_main_instance_s 00033 gs_main_instance; 00034 #endif 00035 00036 #if !defined(MagickDLLCall) 00037 # if defined(MAGICKCORE_WINDOWS_SUPPORT) 00038 # define MagickDLLCall __stdcall 00039 # else 00040 # define MagickDLLCall 00041 # endif 00042 #endif 00043 00044 typedef struct _GhostInfo 00045 { 00046 int 00047 (MagickDLLCall *exit)(gs_main_instance *); 00048 00049 int 00050 (MagickDLLCall *init_with_args)(gs_main_instance *,int,char **); 00051 00052 int 00053 (MagickDLLCall *new_instance)(gs_main_instance **,void *); 00054 00055 int 00056 (MagickDLLCall *run_string)(gs_main_instance *,const char *,int,int *); 00057 00058 void 00059 (MagickDLLCall *delete_instance)(gs_main_instance *); 00060 } GhostInfo; 00061 00062 extern MagickPrivate MagickBooleanType 00063 DelegateComponentGenesis(void); 00064 00065 extern MagickPrivate void 00066 DelegateComponentTerminus(void); 00067 00068 #if defined(__cplusplus) || defined(c_plusplus) 00069 } 00070 #endif 00071 00072 #endif