Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
743 B

/***
*wsetargv.c - generic _wsetargv routine (wchar_t version)
*
* Copyright (c) 1993, 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.
*
*******************************************************************************/
#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.
*
*******************************************************************************/
void __cdecl _wsetargv (
void
)
{
__wsetargv();
}