cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | fe676ee | 2013-11-18 13:03:38 +0000 | [diff] [blame] | 2 | Copyright 1999-2014 ImageMagick Studio LLC, a non-profit organization |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3 | dedicated to making software imaging solutions freely available. |
| 4 | |
| 5 | You may not use this file except in compliance with the License. |
| 6 | obtain a copy of the License at |
| 7 | |
| 8 | http://www.imagemagick.org/script/license.php |
| 9 | |
| 10 | 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 delegates methods. |
| 17 | */ |
| 18 | #ifndef _MAGICKCORE_DELEGATE_H |
| 19 | #define _MAGICKCORE_DELEGATE_H |
| 20 | |
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
cristy | 191ba5c | 2014-03-16 21:26:40 +0000 | [diff] [blame] | 25 | #include <stdarg.h> |
| 26 | #include "MagickCore/semaphore.h" |
| 27 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 28 | typedef struct _DelegateInfo |
| 29 | { |
| 30 | char |
| 31 | *path, |
| 32 | *decode, |
| 33 | *encode, |
| 34 | *commands; |
dirk | a7fc689 | 2014-10-18 16:44:49 +0000 | [diff] [blame^] | 35 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 36 | ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 37 | mode; |
dirk | a7fc689 | 2014-10-18 16:44:49 +0000 | [diff] [blame^] | 38 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 39 | MagickBooleanType |
| 40 | thread_support, |
| 41 | spawn, |
| 42 | stealth; |
cristy | 191ba5c | 2014-03-16 21:26:40 +0000 | [diff] [blame] | 43 | |
| 44 | SemaphoreInfo |
| 45 | *semaphore; |
dirk | a7fc689 | 2014-10-18 16:44:49 +0000 | [diff] [blame^] | 46 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 47 | size_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 48 | signature; |
| 49 | } DelegateInfo; |
| 50 | |
| 51 | extern MagickExport char |
| 52 | *GetDelegateCommand(const ImageInfo *,Image *,const char *,const char *, |
| 53 | ExceptionInfo *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 54 | **GetDelegateList(const char *,size_t *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 55 | |
| 56 | extern MagickExport const char |
| 57 | *GetDelegateCommands(const DelegateInfo *); |
| 58 | |
| 59 | extern MagickExport const DelegateInfo |
| 60 | *GetDelegateInfo(const char *,const char *,ExceptionInfo *exception), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 61 | **GetDelegateInfoList(const char *,size_t *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 62 | |
cristy | 83b793b | 2014-10-18 13:21:13 +0000 | [diff] [blame] | 63 | extern MagickExport int |
| 64 | ExternalDelegateCommand(const MagickBooleanType,const MagickBooleanType, |
| 65 | const char *,char *,ExceptionInfo *); |
| 66 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 67 | extern MagickExport ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 68 | GetDelegateMode(const DelegateInfo *); |
| 69 | |
| 70 | extern MagickExport MagickBooleanType |
| 71 | GetDelegateThreadSupport(const DelegateInfo *), |
| 72 | InvokeDelegate(ImageInfo *,Image *,const char *,const char *,ExceptionInfo *), |
| 73 | ListDelegateInfo(FILE *,ExceptionInfo *); |
| 74 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 75 | #if defined(__cplusplus) || defined(c_plusplus) |
| 76 | } |
| 77 | #endif |
| 78 | |
| 79 | #endif |