windows-nt/Source/XPSP1/NT/base/crts/crtw32/linkopts/wsetargv.c

42 lines
891 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/***
*wsetargv.c - generic _wsetargv routine (wchar_t version)
*
* Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Linking in this module replaces the normal wsetargv with the
* wildcard wsetargv.
*
*Revision History:
* 11-23-93 CFW Module created.
* 03-27-01 PML _[w]setargv now returns an int (vs7#231220)
*
*******************************************************************************/
#include <cruntime.h>
#include <internal.h>
/***
*_wsetargv - sets wargv by calling __wsetargv
*
*Purpose:
* Routine directly transfers to __wsetargv.
*
*Entry:
* See __wsetargv.
*
*Exit:
* See __wsetargv.
*
*Exceptions:
* See __wsetargv.
*
*******************************************************************************/
int __cdecl _wsetargv (
void
)
{
return __wsetargv();
}