mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 09:11:42 +00:00
Jon Griffiths
msvcrt: Implement ___setlc_active_func/___unguarded_readlc_active_add_func svn path=/trunk/; revision=34806
This commit is contained in:
parent
9db3c82bb7
commit
138fbd967b
2 changed files with 18 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue