Commit dadbce9a authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Fix mapping of STATUS_DEVICE_NOT_CONNECTED to match XP.

Fixed the prototype of statustodoserror to make the test work on NT4. Added alternate return values to make the test work on Win98. Check whether RtlNtStatusToDosError ismissing to make the test work on Win95. Added a strict option to cause the test to only accept the standard mapping.
parent 236ae4d2
......@@ -440,7 +440,7 @@ static const DWORD table_c0000001[411] =
ERROR_NO_SYSTEM_RESOURCES, /* c000009a (STATUS_INSUFFICIENT_RESOURCES) */
ERROR_PATH_NOT_FOUND, /* c000009b (STATUS_DFS_EXIT_PATH_FOUND) */
ERROR_CRC, /* c000009c (STATUS_DEVICE_DATA_ERROR) */
ERROR_NOT_READY, /* c000009d (STATUS_DEVICE_NOT_CONNECTED) */
ERROR_DEVICE_NOT_CONNECTED, /* c000009d (STATUS_DEVICE_NOT_CONNECTED) */
ERROR_NOT_READY, /* c000009e (STATUS_DEVICE_POWER_FAILURE) */
ERROR_INVALID_ADDRESS, /* c000009f (STATUS_FREE_VM_NOT_AT_BASE) */
ERROR_INVALID_ADDRESS, /* c00000a0 (STATUS_MEMORY_NOT_ALLOCATED) */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment