mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
25 lines
846 B
C
Vendored
25 lines
846 B
C
Vendored
/**
|
|
* This file has no copyright assigned and is placed in the Public Domain.
|
|
* This file is part of the mingw-w64 runtime package.
|
|
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
|
*/
|
|
|
|
#undef __MSVCRT_VERSION__
|
|
#define _UCRT
|
|
|
|
#include <corecrt_startup.h>
|
|
#include <internal.h>
|
|
#include <stdlib.h>
|
|
#include <new.h>
|
|
|
|
int __cdecl __wgetmainargs(int *argc, wchar_t ***argv, wchar_t ***env, int DoWildCard, _startupinfo *StartInfo)
|
|
{
|
|
_initialize_wide_environment();
|
|
_configure_wide_argv(DoWildCard ? _crt_argv_expanded_arguments : _crt_argv_unexpanded_arguments);
|
|
*argc = *__p___argc();
|
|
*argv = *__p___wargv();
|
|
*env = *__p__wenviron();
|
|
_set_new_mode(StartInfo->newmode);
|
|
return 0;
|
|
}
|
|
int __cdecl (*__MINGW_IMP_SYMBOL(__wgetmainargs))(int *, wchar_t ***, wchar_t ***, int, _startupinfo *) = __wgetmainargs;
|