home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 6.ddi / MWHC.006 / Y < prev    next >
Encoding:
Text File  |  1992-12-09  |  983 b   |  43 lines

  1. /*
  2.  *   status.cf -- extra-ANSI 
  3.  *
  4.  *   Values for errno.
  5.  *
  6.  *           Copyright (c) 1990, MetaWare Incorporated
  7.  */
  8.  
  9. #ifndef _STATUS_CF
  10. #define _STATUS_CF
  11.  
  12. #include "errno.h"
  13.  
  14. enum Values_for_errno {
  15. No_error_occurred=0,
  16. Error_invalid_function=EINTR,
  17. Error_file_not_found=ENOENT,
  18. Error_path_not_found=ENOENT,
  19. Error_too_many_open_files=EMFILE,
  20. Error_access_denied=EACCES,
  21. Error_invalid_handle=EBADF,
  22. Error_arena_trashed=EFAULT,
  23. Error_not_enough_memory=ENOMEM,
  24. Error_invalid_block=ESPIPE,
  25. Error_bad_environment=E2BIG,
  26. Error_bad_format=EINVAL,
  27. Error_invalid_access=EACCES,
  28. Error_invalid_data=EINVAL,
  29. Error_reserved=EBUSY,
  30. Error_invalid_drive=ENOTBLK,
  31. Error_current_directory=ETXTBSY,
  32. Error_not_same_device=EXDEV,
  33. Error_no_more_files=ENFILE,
  34. Error_invalid_radix=EINVAL,
  35. Error_numeric_read_failed=EROFS,
  36. Error_write_failed=ENOSPC,
  37. Error_eof_encountered=EMLINK,
  38. Error_out_of_domain=EDOM,
  39. Error_out_of_range=ERANGE
  40. };
  41.  
  42. #endif /* _STATUS_CF */
  43.