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

  1. /***
  2. *_wcserr.c - routine for indexing into system error list
  3. *
  4. * Copyright (c) 1985-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * Returns system error message index by errno; conforms to the
  8. * XENIX standard, much compatibility with 1983 uniforum draft standard.
  9. * (wide char version of _strerror())
  10. *
  11. *Revision History:
  12. * 11-30-99 GB Module Created
  13. *
  14. *******************************************************************************/
  15. #ifndef _POSIX_
  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 "_strerr.c"
  24. #endif /* _POSIX_ */