4 * Copyright 2000 Francois Gouget.
6 #ifndef __WINE_LOCALE_H
7 #define __WINE_LOCALE_H
8 #define __WINE_USE_MSVCRT
12 #ifdef USE_MSVCRT_PREFIX
13 #define MSVCRT(x) MSVCRT_##x
18 #ifdef USE_MSVCRT_PREFIX
19 #define MSVCRT_LC_ALL 0
20 #define MSVCRT_LC_COLLATE 1
21 #define MSVCRT_LC_CTYPE 2
22 #define MSVCRT_LC_MONETARY 3
23 #define MSVCRT_LC_NUMERIC 4
24 #define MSVCRT_LC_TIME 5
25 #define MSVCRT_LC_MIN MSVCRT_LC_ALL
26 #define MSVCRT_LC_MAX MSVCRT_LC_TIME
35 #define LC_MAX LC_TIME
36 #endif /* USE_MSVCRT_PREFIX */
43 char* int_curr_symbol;
44 char* currency_symbol;
45 char* mon_decimal_point;
46 char* mon_thousands_sep;
65 char* MSVCRT(setlocale)(int,const char*);
66 struct MSVCRT(lconv)* MSVCRT(localeconv)(void);
68 WCHAR* _wsetlocale(int,const WCHAR*);
74 #endif /* __WINE_LOCALE_H */