Changeset 9815 for trunk/src/kernel32/oslibdos.cpp
- Timestamp:
- Feb 17, 2003, 12:31:43 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/oslibdos.cpp
r9693 r9815 1 /* $Id: oslibdos.cpp,v 1.11 4 2003-01-20 10:46:27sandervl Exp $ */1 /* $Id: oslibdos.cpp,v 1.115 2003-02-17 11:31:43 sandervl Exp $ */ 2 2 /* 3 3 * Wrappers for OS/2 Dos* API … … 2219 2219 2220 2220 //Windows returns ERROR_FILE_NOT_FOUND if the file/directory is not present 2221 if(rc == ERROR_NO_MORE_FILES ) {2221 if(rc == ERROR_NO_MORE_FILES || rc == ERROR_PATH_NOT_FOUND) { 2222 2222 SetLastError(ERROR_FILE_NOT_FOUND_W); 2223 2223 } … … 2340 2340 char *lpszBackslash, *lpszColon; 2341 2341 APIRET rc; 2342 2343 //testestest 2344 if(strlen(lpFileName) > CCHMAXPATH) DebugInt3(); 2345 //testestset 2342 2346 2343 2347 //Convert file name from Windows to OS/2 codepage
Note:
See TracChangeset
for help on using the changeset viewer.