4 * Copyright 2000 Francois Gouget.
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.
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.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #ifndef __WINE_LOCALE_H
21 #define __WINE_LOCALE_H
22 #ifndef __WINE_USE_MSVCRT
23 #define __WINE_USE_MSVCRT
26 #ifndef _WCHAR_T_DEFINED
27 #define _WCHAR_T_DEFINED
29 typedef unsigned short wchar_t;
40 #define LC_MAX LC_TIME
42 #ifndef _LCONV_DEFINED
43 #define _LCONV_DEFINED
49 char* int_curr_symbol
;
50 char* currency_symbol
;
51 char* mon_decimal_point
;
52 char* mon_thousands_sep
;
65 #endif /* _LCONV_DEFINED */
72 char* setlocale(int,const char*);
73 struct lconv
* localeconv(void);
75 #ifndef _WLOCALE_DEFINED
76 #define _WLOCALE_DEFINED
77 wchar_t* _wsetlocale(int,const wchar_t*);
78 #endif /* _WLOCALE_DEFINED */
84 #endif /* __WINE_LOCALE_H */