Source code of Windows XP (NT5)
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.
|
|
/***
*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(); }
|