ntdll: Added error mapping for ENXIO.

This commit is contained in:
Alexandre Julliard 2006-10-03 15:06:41 +02:00
parent 01dd1ffdc2
commit e57118b2fd
1 changed files with 1 additions and 0 deletions

View File

@ -358,6 +358,7 @@ NTSTATUS FILE_GetNtStatus(void)
#ifdef ENOMEDIUM #ifdef ENOMEDIUM
case ENOMEDIUM: return STATUS_NO_MEDIA_IN_DEVICE; case ENOMEDIUM: return STATUS_NO_MEDIA_IN_DEVICE;
#endif #endif
case ENXIO: return STATUS_NO_SUCH_DEVICE;
case ENOTTY: case ENOTTY:
case EOPNOTSUPP:return STATUS_NOT_SUPPORTED; case EOPNOTSUPP:return STATUS_NOT_SUPPORTED;
case ECONNRESET:return STATUS_PIPE_DISCONNECTED; case ECONNRESET:return STATUS_PIPE_DISCONNECTED;