qt-build-tools/_win_setargv_fix/setargv.cpp

16 lines
311 B
C++
Raw Normal View History

2020-09-27 23:26:01 +08:00
//
// 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;
}