Ignore:
Timestamp:
Feb 16, 2002, 7:07:20 PM (24 years ago)
Author:
sandervl
Message:

logging updates

File:
1 edited

Legend:

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

    r7849 r7935  
    1 /* $Id: directory.cpp,v 1.44 2002-02-09 12:45:12 sandervl Exp $ */
     1/* $Id: directory.cpp,v 1.45 2002-02-16 18:07:20 sandervl Exp $ */
    22
    33/*
     
    714714    char full_name[MAX_PATHNAME_LEN];
    715715
     716    dprintf(("SearchPathA %s %s %s", path, name, ext));
    716717    if (!DIR_SearchPath( path, name, ext, (LPSTR)full_name )) return 0;
    717718    lstrcpynA( buffer, (LPSTR)full_name, buflen);
     
    732733    LPSTR nameA = HEAP_strdupWtoA( GetProcessHeap(), 0, name );
    733734    LPSTR extA  = HEAP_strdupWtoA( GetProcessHeap(), 0, ext );
     735    dprintf(("SearchPathA %s %s %s", pathA, nameA, extA));
    734736    DWORD ret = DIR_SearchPath( pathA, nameA, extA, (LPSTR)full_name );
    735737    HeapFree( GetProcessHeap(), 0, extA );
Note: See TracChangeset for help on using the changeset viewer.