Changeset 1997 for trunk/src


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

EB: Hack for GetFullPathNameA + Fixed dprintf in lstrcmpW

Location:
trunk/src/kernel32
Files:
2 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",
  • trunk/src/kernel32/heapstring.cpp

    r1975 r1997  
    1 /* $Id: heapstring.cpp,v 1.20 1999-12-05 10:02:30 sandervl Exp $ */
     1/* $Id: heapstring.cpp,v 1.21 1999-12-06 20:39:38 sandervl Exp $ */
    22
    33/*
     
    276276int WIN32API lstrcmpW(LPCWSTR arg1, LPCWSTR arg2)
    277277{
    278     dprintf2(("KERNEL32: lstrcmpW (%08xh-%ls, %08xh-%ls)\n",
     278    dprintf2(("KERNEL32: lstrcmpW (%08xh, %08xh)\n",
    279279             arg1,
    280              arg1,
    281              arg2,
    282280             arg2));
    283281
Note: See TracChangeset for help on using the changeset viewer.