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.

31 lines
645 B

  1. /***
  2. *wsystem.c - pass a command line to the shell (wchar_t version)
  3. *
  4. * Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * defines _wsystem() - passes a command to the shell
  8. *
  9. *Revision History:
  10. * 12-07-93 CFW Module created.
  11. * 02-07-94 CFW POSIXify.
  12. *
  13. *******************************************************************************/
  14. #ifndef _POSIX_
  15. #define WPRFLAG 1
  16. #ifndef _UNICODE /* CRT flag */
  17. #define _UNICODE 1
  18. #endif
  19. #ifndef UNICODE /* NT flag */
  20. #define UNICODE 1
  21. #endif
  22. #undef _MBCS /* UNICODE not _MBCS */
  23. #include "system.c"
  24. #endif /* _POSIX_ */