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
667 B

  1. /***
  2. *wcserror.c - Contains the _wcserror C runtime.
  3. *
  4. * Copyright (c) 1987-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * The _wcserror runtime accepts an error number as input
  8. * and returns the corresponding error string.
  9. * (wide char version of strerror)
  10. *
  11. *Revision History:
  12. * 11-30-99 GB Module Created
  13. *
  14. *
  15. *******************************************************************************/
  16. #ifndef _POSIX_
  17. #ifndef _UNICODE /* CRT flag */
  18. #define _UNICODE 1
  19. #endif
  20. #ifndef UNICODE /* NT flag */
  21. #define UNICODE 1
  22. #endif
  23. #undef _MBCS /* UNICODE not _MBCS */
  24. #include "strerror.c"
  25. #endif /* _POSIX_ */