/* * Locale definitions * * Copyright 2000 Francois Gouget. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __WINE_LOCALE_H #define __WINE_LOCALE_H #define __WINE_USE_MSVCRT #ifndef MSVCRT # ifdef USE_MSVCRT_PREFIX # define MSVCRT(x) MSVCRT_##x # else # define MSVCRT(x) x # endif #endif #ifndef MSVCRT_WCHAR_T_DEFINED #define MSVCRT_WCHAR_T_DEFINED #ifndef __cplusplus typedef unsigned short MSVCRT(wchar_t); #endif #endif #ifdef USE_MSVCRT_PREFIX #define MSVCRT_LC_ALL 0 #define MSVCRT_LC_COLLATE 1 #define MSVCRT_LC_CTYPE 2 #define MSVCRT_LC_MONETARY 3 #define MSVCRT_LC_NUMERIC 4 #define MSVCRT_LC_TIME 5 #define MSVCRT_LC_MIN MSVCRT_LC_ALL #define MSVCRT_LC_MAX MSVCRT_LC_TIME #else #define LC_ALL 0 #define LC_COLLATE 1 #define LC_CTYPE 2 #define LC_MONETARY 3 #define LC_NUMERIC 4 #define LC_TIME 5 #define LC_MIN LC_ALL #define LC_MAX LC_TIME #endif /* USE_MSVCRT_PREFIX */ #ifndef MSVCRT_LCONV_DEFINED #define MSVCRT_LCONV_DEFINED struct MSVCRT(lconv) { char* decimal_point; char* thousands_sep; char* grouping; char* int_curr_symbol; char* currency_symbol; char* mon_decimal_point; char* mon_thousands_sep; char* mon_grouping; char* positive_sign; char* negative_sign; char int_frac_digits; char frac_digits; char p_cs_precedes; char p_sep_by_space; char n_cs_precedes; char n_sep_by_space; char p_sign_posn; char n_sign_posn; }; #endif /* MSVCRT_LCONV_DEFINED */ #ifdef __cplusplus extern "C" { #endif char* MSVCRT(setlocale)(int,const char*); struct MSVCRT(lconv)* MSVCRT(localeconv)(void); #ifndef MSVCRT_WLOCALE_DEFINED #define MSVCRT_WLOCALE_DEFINED MSVCRT(wchar_t)* _wsetlocale(int,const MSVCRT(wchar_t)*); #endif /* MSVCRT_WLOCALE_DEFINED */ #ifdef __cplusplus } #endif #endif /* __WINE_LOCALE_H */