Ignore:
Timestamp:
Jun 24, 2001, 6:40:45 PM (24 years ago)
Author:
sandervl
Message:

rewrote CreateDirectory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/directory.cpp

    r6090 r6094  
    1 /* $Id: directory.cpp,v 1.37 2001-06-24 14:13:04 sandervl Exp $ */
     1/* $Id: directory.cpp,v 1.38 2001-06-24 16:40:44 sandervl Exp $ */
    22
    33/*
     
    255255  }
    256256 
    257   dprintf(("CreateDirectoryA %s",
    258             lpstrDirectory));
     257  dprintf(("CreateDirectoryA %s", lpstrDirectory));
    259258 
    260259  // PH Note 2000/06/12:
     
    268267    }
    269268 
    270   return(O32_CreateDirectory(lpstrDirectory,
    271                              arg2));
     269  return(OSLibDosCreateDirectory(lpstrDirectory));
    272270}
    273271
     
    291289
    292290  astring = UnicodeToAsciiString((LPWSTR)arg1);
    293   rc = CreateDirectoryA(astring, arg2);
     291  rc = CALL_ODINFUNC(CreateDirectoryA)(astring, arg2);
    294292  FreeAsciiString(astring);
    295293  return(rc);
Note: See TracChangeset for help on using the changeset viewer.