blob: 673f382e54b3c9b55d60dce4b25bf54c3a62b331 [file] [log] [blame]
/**
* 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.
*/
#include <internal.h>
/* Define __wgetmainargs() function via msvcrt20.dll __wgetmainargs() function */
_CRTIMP void __cdecl __msvcrt20_wgetmainargs(int *argc, wchar_t ***argv, wchar_t ***envp, int expand_wildcards, int newmode);
int __cdecl __wgetmainargs(int *argc, wchar_t ***argv, wchar_t ***envp, int expand_wildcards, _startupinfo *startup_info)
{
/*
* msvcrt20.dll's __wgetmainargs() function terminates process on error.
* If it returns back to the caller then it means that it succeeded.
*/
__msvcrt20_wgetmainargs(argc, argv, envp, expand_wildcards, startup_info->newmode);
return 0;
}
int __cdecl (*__MINGW_IMP_SYMBOL(__wgetmainargs))(int *, wchar_t ***, wchar_t ***, int, _startupinfo *) = __wgetmainargs;