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.

36 lines
728 B

  1. /***
  2. *_wstargv.c - Wildcard argv[] expansion (wchar_t version)
  3. *
  4. * Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * _wsetargv performs wildcard argv[] expansion
  8. *
  9. * NOTE: This stub module scheme is compatible with NT build
  10. * procedure.
  11. *
  12. *Revision History:
  13. * 11-23-93 CFW Module Created.
  14. * 02-07-94 CFW POSIXify.
  15. *
  16. *******************************************************************************/
  17. #ifndef _POSIX_
  18. #define WPRFLAG 1
  19. #ifndef _UNICODE /* CRT flag */
  20. #define _UNICODE 1
  21. #endif
  22. #ifndef UNICODE /* NT flag */
  23. #define UNICODE 1
  24. #endif
  25. #undef _MBCS /* UNICODE not _MBCS */
  26. #define WILDCARD 1
  27. #include "stdargv.c"
  28. #endif /* _POSIX_ */