Changeset 3546 for trunk/src


Ignore:
Timestamp:
May 16, 2000, 10:17:30 PM (25 years ago)
Author:
phaller
Message:

Fix: spelling of PathFindFileName

Location:
trunk/src/shlwapi
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shlwapi/path.cpp

    r3539 r3546  
    1 /* $Id: path.cpp,v 1.1 2000-05-15 02:43:16 phaller Exp $ */
     1/* $Id: path.cpp,v 1.2 2000-05-16 20:17:30 phaller Exp $ */
    22
    33/*
     
    251251
    252252/*************************************************************************
    253  * PathFindFilename [SHELL32.34]
     253 * PathFindFileName [SHELL32.34]
    254254 *
    255255 * NOTES
    256256 *     basename(char *fn);
    257257 */
    258 ODINFUNCTION1(LPCSTR, PathFindFilenameA,
     258ODINFUNCTION1(LPCSTR, PathFindFileNameA,
    259259              LPCSTR, aptr)
    260260{
     
    276276}
    277277
    278 ODINFUNCTION1(LPCWSTR, PathFindFilenameW,
     278ODINFUNCTION1(LPCWSTR, PathFindFileNameW,
    279279              LPCWSTR, wptr)
    280280{  LPCWSTR wslash;
     
    289289   return wslash;
    290290}
    291 ODINFUNCTION1(LPCVOID, PathFindFilenameAW,
     291ODINFUNCTION1(LPCVOID, PathFindFileNameAW,
    292292              LPCVOID, fn)
    293293{
    294294   if(VERSION_OsIsUnicode())
    295      return PathFindFilenameW((LPWSTR)fn);
    296    return PathFindFilenameA((LPSTR)fn);
     295     return PathFindFileNameW((LPWSTR)fn);
     296   return PathFindFileNameA((LPSTR)fn);
    297297}
    298298
  • trunk/src/shlwapi/shlwapi.def

    r3539 r3546  
    1 ; $Id: shlwapi.def,v 1.11 2000-05-15 02:42:35 phaller Exp $
     1; $Id: shlwapi.def,v 1.12 2000-05-16 20:17:29 phaller Exp $
    22
    33; updated export ordinals to NT4 version of SHLWAPI.DLL
     
    5353  ;*PathFindExtensionAW    = _PathFindExtensionAW@4
    5454    PathFindExtensionW     = _PathFindExtensionW@4                @473
    55     PathFindFilenameA      = _PathFindFilenameA@4                 @474
    56   ;*PathFindFilenameAW     = _PathFindFilenameAW@4
    57     PathFindFilenameW      = _PathFindFilenameW@4                 @475
     55    PathFindFileNameA      = _PathFindFileNameA@4                 @474
     56  ;*PathFindFileNameAW     = _PathFindFileNameAW@4
     57    PathFindFileNameW      = _PathFindFileNameW@4                 @475
    5858  ; PathFindNextComponentA = _PathFindNextComponentA@?            @476
    5959  ; PathFindNextComponentW = _PathFindNextComponentW@?            @477
Note: See TracChangeset for help on using the changeset viewer.