cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 16af1cb | 2009-12-11 21:38:29 +0000 | [diff] [blame] | 2 | Copyright 1999-2010 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 locale methods. |
| 17 | */ |
| 18 | #ifndef _MAGICKCORE_LOCALE_H |
| 19 | #define _MAGICKCORE_LOCALE_H |
| 20 | |
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | #include "magick/hashmap.h" |
| 26 | |
| 27 | typedef struct _LocaleInfo |
| 28 | { |
| 29 | char |
| 30 | *path, |
| 31 | *tag, |
| 32 | *message; |
| 33 | |
| 34 | MagickBooleanType |
| 35 | stealth; |
| 36 | |
| 37 | struct _LocaleInfo |
| 38 | *previous, |
| 39 | *next; /* deprecated, use GetLocaleInfoList() */ |
| 40 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 41 | size_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 42 | signature; |
| 43 | } LocaleInfo; |
| 44 | |
| 45 | extern MagickExport char |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 46 | **GetLocaleList(const char *,size_t *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 47 | |
| 48 | extern MagickExport const char |
| 49 | *GetLocaleMessage(const char *); |
| 50 | |
| 51 | extern MagickExport const LocaleInfo |
| 52 | *GetLocaleInfo_(const char *,ExceptionInfo *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 53 | **GetLocaleInfoList(const char *,size_t *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 54 | |
| 55 | extern MagickExport LinkedListInfo |
| 56 | *DestroyLocaleOptions(LinkedListInfo *), |
| 57 | *GetLocaleOptions(const char *,ExceptionInfo *); |
| 58 | |
| 59 | extern MagickExport MagickBooleanType |
cristy | f34a145 | 2009-10-24 22:29:27 +0000 | [diff] [blame] | 60 | ListLocaleInfo(FILE *,ExceptionInfo *), |
| 61 | LocaleComponentGenesis(void); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 62 | |
| 63 | extern MagickExport void |
cristy | f34a145 | 2009-10-24 22:29:27 +0000 | [diff] [blame] | 64 | LocaleComponentTerminus(void); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 65 | |
| 66 | #if defined(__cplusplus) || defined(c_plusplus) |
| 67 | } |
| 68 | #endif |
| 69 | |
| 70 | #endif |