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.

38 lines
1.1 KiB

  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-2001, 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. *Revision History:
  17. * 11-24-93 CFW Module created.
  18. * 02-07-94 CFW POSIXify.
  19. *
  20. *******************************************************************************/
  21. #ifndef _POSIX_
  22. #define WPRFLAG 1
  23. #ifndef _UNICODE /* CRT flag */
  24. #define _UNICODE 1
  25. #endif
  26. #ifndef UNICODE /* NT flag */
  27. #define UNICODE 1
  28. #endif
  29. #undef _MBCS /* UNICODE not _MBCS */
  30. #include "dllargv.c"
  31. #endif /* _POSIX_ */