Changeset 5890 for trunk/src/kernel32/oslibdos.cpp
- Timestamp:
- Jun 2, 2001, 8:48:27 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/oslibdos.cpp
r5587 r5890 1 /* $Id: oslibdos.cpp,v 1.6 1 2001-04-26 13:22:48 sandervlExp $ */1 /* $Id: oslibdos.cpp,v 1.62 2001-06-02 18:48:27 achimha Exp $ */ 2 2 /* 3 3 * Wrappers for OS/2 Dos* API … … 945 945 if(rc) 946 946 { 947 SetLastError(error2WinError(rc)); 947 // @@@AH 2001-06-02 Win2k SP2 returns error 2 in this case 948 int winError = error2WinError(rc); 949 if (winError == ERROR_OPEN_FAILED_W) 950 winError = ERROR_FILE_NOT_FOUND_W; 951 SetLastError(winError); 948 952 return INVALID_HANDLE_VALUE_W; 949 953 }
Note:
See TracChangeset
for help on using the changeset viewer.