Commit 2ea84373 authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

ucrtbase: Add some wide functions called on startup.

parent f6c10b8a
......@@ -24,7 +24,7 @@
@ cdecl _cexit() ucrtbase._cexit
@ cdecl _clearfp() ucrtbase._clearfp
@ cdecl _configure_narrow_argv(long) ucrtbase._configure_narrow_argv
@ stub _configure_wide_argv
@ cdecl _configure_wide_argv(long) ucrtbase._configure_wide_argv
@ cdecl _control87(long long) ucrtbase._control87
@ cdecl _controlfp(long long) ucrtbase._controlfp
@ cdecl _controlfp_s(ptr long long) ucrtbase._controlfp_s
......@@ -53,7 +53,7 @@
@ cdecl _getpid() ucrtbase._getpid
@ cdecl _initialize_narrow_environment() ucrtbase._initialize_narrow_environment
@ stub _initialize_onexit_table
@ stub _initialize_wide_environment
@ cdecl _initialize_wide_environment() ucrtbase._initialize_wide_environment
@ cdecl _initterm(ptr ptr) ucrtbase._initterm
@ cdecl _initterm_e(ptr ptr) ucrtbase._initterm_e
@ cdecl _invalid_parameter_noinfo() ucrtbase._invalid_parameter_noinfo
......
......@@ -666,3 +666,21 @@ int CDECL _initialize_narrow_environment(void)
TRACE("\n");
return 0;
}
/*********************************************************************
* _configure_wide_argv (UCRTBASE.@)
*/
int CDECL _configure_wide_argv(int mode)
{
FIXME("(%d) stub\n", mode);
return 0;
}
/*********************************************************************
* _initialize_wide_environment (UCRTBASE.@)
*/
int CDECL _initialize_wide_environment(void)
{
FIXME("stub\n");
return 0;
}
......@@ -230,7 +230,7 @@
@ cdecl _commit(long) MSVCRT__commit
@ cdecl _configthreadlocale(long)
@ cdecl _configure_narrow_argv(long)
@ stub _configure_wide_argv
@ cdecl _configure_wide_argv(long)
@ cdecl _control87(long long)
@ cdecl _controlfp(long long)
@ cdecl _controlfp_s(ptr long long)
......@@ -420,7 +420,7 @@
@ cdecl _i64tow_s(int64 ptr long long) MSVCRT__i64tow_s
@ cdecl _initialize_narrow_environment()
@ stub _initialize_onexit_table
@ stub _initialize_wide_environment
@ cdecl _initialize_wide_environment()
@ cdecl _initterm(ptr ptr)
@ cdecl _initterm_e(ptr ptr)
@ cdecl _invalid_parameter_noinfo()
......
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