Fixed prototypes of CreateStatusWindowA/W, ImageList_Copy,
[wine] / include / msvcrt / locale.h
1 /*
2  * Locale definitions
3  *
4  * Copyright 2000 Francois Gouget.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 #ifndef __WINE_LOCALE_H
21 #define __WINE_LOCALE_H
22 #ifndef __WINE_USE_MSVCRT
23 #define __WINE_USE_MSVCRT
24 #endif
25
26 #ifndef MSVCRT
27 # ifdef USE_MSVCRT_PREFIX
28 #  define MSVCRT(x)    MSVCRT_##x
29 # else
30 #  define MSVCRT(x)    x
31 # endif
32 #endif
33
34 #ifndef MSVCRT_WCHAR_T_DEFINED
35 #define MSVCRT_WCHAR_T_DEFINED
36 #ifndef __cplusplus
37 typedef unsigned short MSVCRT(wchar_t);
38 #endif
39 #endif
40
41 #ifdef USE_MSVCRT_PREFIX
42 #define MSVCRT_LC_ALL          0
43 #define MSVCRT_LC_COLLATE      1
44 #define MSVCRT_LC_CTYPE        2
45 #define MSVCRT_LC_MONETARY     3
46 #define MSVCRT_LC_NUMERIC      4
47 #define MSVCRT_LC_TIME         5
48 #define MSVCRT_LC_MIN          MSVCRT_LC_ALL
49 #define MSVCRT_LC_MAX          MSVCRT_LC_TIME
50 #else
51 #define LC_ALL                 0
52 #define LC_COLLATE             1
53 #define LC_CTYPE               2
54 #define LC_MONETARY            3
55 #define LC_NUMERIC             4
56 #define LC_TIME                5
57 #define LC_MIN                 LC_ALL
58 #define LC_MAX                 LC_TIME
59 #endif /* USE_MSVCRT_PREFIX */
60
61 #ifndef MSVCRT_LCONV_DEFINED
62 #define MSVCRT_LCONV_DEFINED
63 struct MSVCRT(lconv)
64 {
65     char* decimal_point;
66     char* thousands_sep;
67     char* grouping;
68     char* int_curr_symbol;
69     char* currency_symbol;
70     char* mon_decimal_point;
71     char* mon_thousands_sep;
72     char* mon_grouping;
73     char* positive_sign;
74     char* negative_sign;
75     char int_frac_digits;
76     char frac_digits;
77     char p_cs_precedes;
78     char p_sep_by_space;
79     char n_cs_precedes;
80     char n_sep_by_space;
81     char p_sign_posn;
82     char n_sign_posn;
83 };
84 #endif /* MSVCRT_LCONV_DEFINED */
85
86
87 #ifdef __cplusplus
88 extern "C" {
89 #endif
90
91 char*       MSVCRT(setlocale)(int,const char*);
92 struct MSVCRT(lconv)* MSVCRT(localeconv)(void);
93
94 #ifndef MSVCRT_WLOCALE_DEFINED
95 #define MSVCRT_WLOCALE_DEFINED
96 MSVCRT(wchar_t)* _wsetlocale(int,const MSVCRT(wchar_t)*);
97 #endif /* MSVCRT_WLOCALE_DEFINED */
98
99 #ifdef __cplusplus
100 }
101 #endif
102
103 #endif /* __WINE_LOCALE_H */