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

  1. /***
  2. *wdllargv.c - Dummy _wsetargv() routine for use with C Run-Time as a DLL (CRTDLL)
  3. *             (wchar_t version)
  4. *
  5. *       Copyright (c) 1993-1997, Microsoft Corporation. All rights reserved.
  6. *
  7. *Purpose:
  8. *       This object goes into CRTDLL.LIB, which is linked with user programs
  9. *       to use CRTDLL.DLL for C run-time library functions.  If the user
  10. *       program links explicitly with WSETARGV.OBJ, this object will not be
  11. *       linked in, and the _wsetargv() that does get called with set the flag
  12. *       that will enable wildcard expansion.  If WSETARGV.OBJ is not linked
  13. *       into the EXE, this object will get called by the CRT start-up stub
  14. *       and the flag to enable wildcard expansion will not be set.
  15. *
  16. *******************************************************************************/
  17.  
  18.  
  19. #define WPRFLAG 1
  20.  
  21. #ifndef _UNICODE
  22. #define _UNICODE 1
  23. #endif  /* _UNICODE */
  24.  
  25. #ifndef UNICODE
  26. #define UNICODE 1
  27. #endif  /* UNICODE */
  28.  
  29. #undef _MBCS /* UNICODE not _MBCS */
  30.  
  31. #include "dllargv.c"
  32.  
  33.