Changeset 6094 for trunk/src/kernel32
- Timestamp:
- Jun 24, 2001, 6:40:45 PM (24 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/directory.cpp
r6090 r6094 1 /* $Id: directory.cpp,v 1.3 7 2001-06-24 14:13:04 sandervl Exp $ */1 /* $Id: directory.cpp,v 1.38 2001-06-24 16:40:44 sandervl Exp $ */ 2 2 3 3 /* … … 255 255 } 256 256 257 dprintf(("CreateDirectoryA %s", 258 lpstrDirectory)); 257 dprintf(("CreateDirectoryA %s", lpstrDirectory)); 259 258 260 259 // PH Note 2000/06/12: … … 268 267 } 269 268 270 return(O32_CreateDirectory(lpstrDirectory, 271 arg2)); 269 return(OSLibDosCreateDirectory(lpstrDirectory)); 272 270 } 273 271 … … 291 289 292 290 astring = UnicodeToAsciiString((LPWSTR)arg1); 293 rc = C reateDirectoryA(astring, arg2);291 rc = CALL_ODINFUNC(CreateDirectoryA)(astring, arg2); 294 292 FreeAsciiString(astring); 295 293 return(rc); -
trunk/src/kernel32/oslibdos.cpp
r6090 r6094 1 /* $Id: oslibdos.cpp,v 1.7 0 2001-06-24 14:13:04 sandervl Exp $ */1 /* $Id: oslibdos.cpp,v 1.71 2001-06-24 16:40:44 sandervl Exp $ */ 2 2 /* 3 3 * Wrappers for OS/2 Dos* API … … 551 551 552 552 rc = DosDeleteDir((PSZ)lpszDir); 553 SetLastError(error2WinError(rc)); 554 return (rc == NO_ERROR); 555 } 556 //****************************************************************************** 557 //****************************************************************************** 558 BOOL OSLibDosCreateDirectory(LPCSTR lpszDir) 559 { 560 APIRET rc; 561 562 rc = DosCreateDir((PSZ)lpszDir, NULL); 553 563 SetLastError(error2WinError(rc)); 554 564 return (rc == NO_ERROR); -
trunk/src/kernel32/oslibdos.h
r6090 r6094 1 /* $Id: oslibdos.h,v 1.3 3 2001-06-24 14:13:05 sandervl Exp $ */1 /* $Id: oslibdos.h,v 1.34 2001-06-24 16:40:45 sandervl Exp $ */ 2 2 3 3 /* … … 80 80 BOOL OSLibDosMoveFile(LPCSTR lpszOldFile, LPCSTR lpszNewFile); 81 81 BOOL OSLibDosRemoveDir(LPCSTR lpszDir); 82 BOOL OSLibDosCreateDirectory(LPCSTR lpszDir); 82 83 83 84 #define OSLIB_SETPTR_FILE_CURRENT 0
Note:
See TracChangeset
for help on using the changeset viewer.