Leaked source code of windows server 2003
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.

41 lines
932 B

  1. /***
  2. *wsetargv.c - generic _wsetargv routine (wchar_t version)
  3. *
  4. * Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * Linking in this module replaces the normal wsetargv with the
  8. * wildcard wsetargv.
  9. *
  10. *Revision History:
  11. * 11-23-93 CFW Module created.
  12. * 03-27-01 PML _[w]setargv now returns an int (vs7#231220)
  13. *
  14. *******************************************************************************/
  15. #include <cruntime.h>
  16. #include <internal.h>
  17. /***
  18. *_wsetargv - sets wargv by calling __wsetargv
  19. *
  20. *Purpose:
  21. * Routine directly transfers to __wsetargv.
  22. *
  23. *Entry:
  24. * See __wsetargv.
  25. *
  26. *Exit:
  27. * See __wsetargv.
  28. *
  29. *Exceptions:
  30. * See __wsetargv.
  31. *
  32. *******************************************************************************/
  33. int __cdecl _wsetargv (
  34. void
  35. )
  36. {
  37. return __wsetargv();
  38. }