Commit 4aec827b authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msvcrt: Implement ___lc_codepage_func, ___lc_collate_cp_func and ___lc_handle_func.

parent dbe5453f
......@@ -607,3 +607,27 @@ void CDECL __lconv_init(void)
{
FIXME(" stub\n");
}
/*********************************************************************
* ___lc_handle_func (MSVCRT.@)
*/
HANDLE * CDECL ___lc_handle_func(void)
{
return MSVCRT___lc_handle;
}
/*********************************************************************
* ___lc_codepage_func (MSVCRT.@)
*/
int CDECL ___lc_codepage_func(void)
{
return MSVCRT___lc_codepage;
}
/*********************************************************************
* ___lc_collate_cp_func (MSVCRT.@)
*/
int CDECL ___lc_collate_cp_func(void)
{
return MSVCRT___lc_collate_cp;
}
......@@ -84,9 +84,9 @@
@ cdecl __RTDynamicCast(ptr long ptr ptr long) MSVCRT___RTDynamicCast
@ cdecl __RTtypeid(ptr) MSVCRT___RTtypeid
@ cdecl __STRINGTOLD(ptr ptr str long)
@ stub ___lc_codepage_func
@ stub ___lc_collate_cp_func
@ stub ___lc_handle_func
@ cdecl ___lc_codepage_func()
@ cdecl ___lc_collate_cp_func()
@ cdecl ___lc_handle_func()
@ cdecl ___mb_cur_max_func() MSVCRT____mb_cur_max_func
@ cdecl ___setlc_active_func() MSVCRT____setlc_active_func
@ cdecl ___unguarded_readlc_active_add_func() MSVCRT____unguarded_readlc_active_add_func
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment