Jon Griffiths

msvcrt: Implement ___setlc_active_func/___unguarded_readlc_active_add_func

svn path=/trunk/; revision=34806
This commit is contained in:
Aleksey Bragin 2008-07-26 11:54:54 +00:00
parent 9db3c82bb7
commit 138fbd967b
2 changed files with 18 additions and 2 deletions

View file

@ -104,8 +104,8 @@ EXPORTS
; ___lc_collate_cp_func @99
; ___lc_handle_func @100
; ___mb_cur_max_func @101
; ___setlc_active_func @102
; ___unguarded_readlc_active_add_func @103
___setlc_active_func @102
___unguarded_readlc_active_add_func @103
__argc @104 DATA
__argv @105 DATA
__badioinfo @106 DATA

View file

@ -875,3 +875,19 @@ int CDECL _getmbcp(void)
{
return MSVCRT___lc_codepage;
}
/*********************************************************************
* ___unguarded_readlc_active_add_func (MSVCRT.@)
*/
unsigned int * CDECL ___unguarded_readlc_active_add_func(void)
{
return &__unguarded_readlc_active;
}
/*********************************************************************
* ___setlc_active_func (MSVCRT.@)
*/
unsigned int CDECL ___setlc_active_func(void)
{
return __setlc_active;
}