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.

33 lines
783 B

  1. /***
  2. *wstdenvp.c - standard _setenvp routine (wchar_t version)
  3. *
  4. * Copyright (c) 1993-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * This module is called by the C start-up routine to set up "_wenviron".
  8. * Its sets up an array of pointers to strings in the environment.
  9. * The global symbol "_wenviron" is set to point to this array.
  10. *
  11. *Revision History:
  12. * 11-29-93 CFW Module created.
  13. * 02-07-94 CFW POSIXify.
  14. *
  15. *******************************************************************************/
  16. #ifndef _POSIX_
  17. #define WPRFLAG 1
  18. #ifndef _UNICODE /* CRT flag */
  19. #define _UNICODE 1
  20. #endif
  21. #ifndef UNICODE /* NT flag */
  22. #define UNICODE 1
  23. #endif
  24. #undef _MBCS /* UNICODE not _MBCS */
  25. #include "stdenvp.c"
  26. #endif /* _POSIX_ */