Changeset 6094 for trunk/src/kernel32/directory.cpp
- Timestamp:
- Jun 24, 2001, 6:40:45 PM (24 years ago)
- File:
-
- 1 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);
Note:
See TracChangeset
for help on using the changeset viewer.