home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / wsetargv.c < prev    next >
C/C++ Source or Header  |  1998-06-17  |  793b  |  38 lines

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