Ignore:
Timestamp:
Dec 6, 1999, 9:39:38 PM (26 years ago)
Author:
sandervl
Message:

EB: Hack for GetFullPathNameA + Fixed dprintf in lstrcmpW

File:
1 edited

Legend:

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

    r1924 r1997  
    1 /* $Id: Fileio.cpp,v 1.18 1999-12-01 18:40:47 sandervl Exp $ */
     1/* $Id: Fileio.cpp,v 1.19 1999-12-06 20:39:37 sandervl Exp $ */
    22
    33/*
     
    434434              LPSTR *, arg4)
    435435{
     436    char *ptr;
    436437    dprintf(("KERNEL32:  GetFullPathName %s\n", arg1));
     438      while((ptr = strchr(arg1, '/')) != NULL)
     439        *ptr = '\\';
    437440    return O32_GetFullPathName(arg1, arg2, arg3, arg4);
    438441}
     
    448451 DWORD rc;
    449452
    450   dprintf(("KERNEL32: GetFullPathNameW\n"));
    451453  asciibuffer = (char *)malloc(nBufferLength+1);
    452454  astring     = UnicodeToAsciiString((LPWSTR)lpFileName);
    453455
    454   rc = O32_GetFullPathName(astring,
    455                        nBufferLength,
    456                        asciibuffer,
    457                        &asciipart);
     456  rc = ODIN_GetFullPathNameA(astring,
     457                             nBufferLength,
     458                             asciibuffer,
     459                             &asciipart);
    458460
    459461  dprintf(("KERNEL32: GetFullPathNameW %s returns %s\n",
Note: See TracChangeset for help on using the changeset viewer.