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.

35 lines
908 B

  1. /***
  2. *wdll_av.c - __wsetargv() routine for use with C Run-Time as a DLL (CRTDLL)
  3. * (wchar_t version)
  4. *
  5. * Copyright (c) 1999-2001, Microsoft Corporation. All rights reserved.
  6. *
  7. *Purpose:
  8. * This object is part of the start-up code for EXE's linked with
  9. * CRTDLL.LIB/MSVCRT.LIB. This object will be linked into the user
  10. * EXE if and only if the user explicitly links with WSETARGV.OBJ.
  11. * The code in this object sets the flag that is passed to the
  12. * C Run-Time DLL to enable wildcard expansion of the argv[] vector.
  13. *
  14. *Revision History:
  15. * 08-27-99 PML Module created.
  16. *
  17. *******************************************************************************/
  18. #ifndef _POSIX_
  19. #define WPRFLAG 1
  20. #ifndef _UNICODE /* CRT flag */
  21. #define _UNICODE 1
  22. #endif
  23. #ifndef UNICODE /* NT flag */
  24. #define UNICODE 1
  25. #endif
  26. #undef _MBCS /* UNICODE not _MBCS */
  27. #include "dll_argv.c"
  28. #endif /* _POSIX_ */