delegate-private.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
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(__WINDOWS__)
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 #if defined(__cplusplus) || defined(c_plusplus)
00063 }
00064 #endif
00065
00066 #endif