]> granicus.if.org Git - imagemagick/blob - MagickCore/locale_.h
(no commit message)
[imagemagick] / MagickCore / locale_.h
1 /*
2   Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization
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 "MagickCore/hashmap.h"
26
27 typedef struct _LocaleInfo
28 {
29   char
30     *path,
31     *tag,
32     *message;
33                                                                                 
34   MagickBooleanType
35     stealth;
36                                                                                 
37   size_t
38     signature;
39 } LocaleInfo;
40
41 extern MagickExport char
42   **GetLocaleList(const char *,size_t *,ExceptionInfo *);
43
44 extern MagickExport const char
45   *GetLocaleMessage(const char *);
46
47 extern MagickExport const LocaleInfo
48   *GetLocaleInfo_(const char *,ExceptionInfo *),
49   **GetLocaleInfoList(const char *,size_t *,ExceptionInfo *);
50
51 extern MagickExport double
52   InterpretLocaleValue(const char *restrict,char **restrict);
53
54 extern MagickExport LinkedListInfo
55   *DestroyLocaleOptions(LinkedListInfo *),
56   *GetLocaleOptions(const char *,ExceptionInfo *);
57
58 extern MagickExport MagickBooleanType
59   ListLocaleInfo(FILE *,ExceptionInfo *);
60
61 extern MagickExport ssize_t
62   FormatLocaleFile(FILE *,const char *restrict,...)
63     magick_attribute((__format__ (__printf__,2,3))),
64   FormatLocaleString(char *restrict,const size_t,const char *restrict,...)
65     magick_attribute((__format__ (__printf__,3,4)));
66
67 #if defined(__cplusplus) || defined(c_plusplus)
68 }
69 #endif
70
71 #endif