qt-build-tools/_win_setargv_fix/setargv.cpp
2020-09-27 17:26:01 +02:00

16 lines
311 B
C++

//
// setargv.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// A link option that enables wildcard expansion for the arguments to main().
//
#include <vcruntime_startup.h>
extern "C" _crt_argv_mode __CRTDECL _get_startup_argv_mode()
{
return _crt_argv_expanded_arguments;
}