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.

38 lines
902 B

  1. /***
  2. *wspawnve.c - Low level routine eventually called by all _wspawnXX routines
  3. * also contains all code for _wexecve, called by _wexecXX routines
  4. * (wchar_t version)
  5. *
  6. * Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
  7. *
  8. *Purpose:
  9. *
  10. * This is the low level routine which is eventually invoked by all the
  11. * _wspawnXX routines.
  12. *
  13. * This is also the low-level routine which is eventually invoked by
  14. * all of the _wexecXX routines.
  15. *
  16. *Revision History:
  17. * 11-19-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 "spawnve.c"
  31. #endif /* _POSIX_ */