mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 12:55:43 +00:00
[CRT]
* Annotate locale.h. svn path=/trunk/; revision=58484
This commit is contained in:
parent
01a913e518
commit
3637c5fa07
1 changed files with 59 additions and 10 deletions
|
@ -68,19 +68,68 @@ extern "C" {
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int __cdecl _configthreadlocale(int _Flag);
|
_Check_return_opt_
|
||||||
char *__cdecl setlocale(int _Category,const char *_Locale);
|
int
|
||||||
_CRTIMP struct lconv *__cdecl localeconv(void);
|
__cdecl
|
||||||
_locale_t __cdecl _get_current_locale(void);
|
_configthreadlocale(
|
||||||
_locale_t __cdecl _create_locale(int _Category,const char *_Locale);
|
_In_ int _Flag);
|
||||||
void __cdecl _free_locale(_locale_t _Locale);
|
|
||||||
_locale_t __cdecl __get_current_locale(void);
|
_Check_return_opt_
|
||||||
_locale_t __cdecl __create_locale(int _Category,const char *_Locale);
|
char*
|
||||||
void __cdecl __free_locale(_locale_t _Locale);
|
__cdecl
|
||||||
|
setlocale(
|
||||||
|
_In_ int _Category,
|
||||||
|
_In_opt_z_ const char *_Locale);
|
||||||
|
|
||||||
|
_Check_return_opt_
|
||||||
|
_CRTIMP
|
||||||
|
struct lconv*
|
||||||
|
__cdecl
|
||||||
|
localeconv(void);
|
||||||
|
|
||||||
|
_Check_return_opt_
|
||||||
|
_locale_t
|
||||||
|
__cdecl
|
||||||
|
_get_current_locale(void);
|
||||||
|
|
||||||
|
_Check_return_opt_
|
||||||
|
_locale_t
|
||||||
|
__cdecl
|
||||||
|
_create_locale(
|
||||||
|
_In_ int _Category,
|
||||||
|
_In_z_ const char *_Locale);
|
||||||
|
|
||||||
|
void
|
||||||
|
__cdecl
|
||||||
|
_free_locale(
|
||||||
|
_In_opt_ _locale_t _Locale);
|
||||||
|
|
||||||
|
_Check_return_
|
||||||
|
_locale_t
|
||||||
|
__cdecl
|
||||||
|
__get_current_locale(void);
|
||||||
|
|
||||||
|
_Check_return_
|
||||||
|
_locale_t
|
||||||
|
__cdecl
|
||||||
|
__create_locale(
|
||||||
|
_In_ int _Category,
|
||||||
|
_In_z_ const char *_Locale);
|
||||||
|
|
||||||
|
void
|
||||||
|
__cdecl
|
||||||
|
__free_locale(
|
||||||
|
_In_opt_ _locale_t _Locale);
|
||||||
|
|
||||||
#ifndef _WLOCALE_DEFINED
|
#ifndef _WLOCALE_DEFINED
|
||||||
#define _WLOCALE_DEFINED
|
#define _WLOCALE_DEFINED
|
||||||
_CRTIMP wchar_t *__cdecl _wsetlocale(int _Category,const wchar_t *_Locale);
|
_Check_return_opt_
|
||||||
|
_CRTIMP
|
||||||
|
wchar_t*
|
||||||
|
__cdecl
|
||||||
|
_wsetlocale(
|
||||||
|
_In_ int _Category,
|
||||||
|
_In_opt_z_ const wchar_t *_Locale);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue