Ignore:
Timestamp:
Aug 24, 2000, 11:33:33 AM (25 years ago)
Author:
sandervl
Message:

resync with Wine 20000801

File:
1 edited

Legend:

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

    r3942 r4081  
    1 /* $Id: pathcpp.cpp,v 1.3 2000-08-02 20:18:23 bird Exp $ */
     1/* $Id: pathcpp.cpp,v 1.4 2000-08-24 09:32:42 sandervl Exp $ */
    22
    33/*
     
    9898  return (LPWSTR)pszPath;
    9999}
    100 
    101 //SvL: NT seems to concatenate both strings (not tested very well)
    102 ODINFUNCTION2(BOOL, PathAddExtensionA, LPSTR, pszPath, LPSTR, pszExtension)
    103 {
    104   lstrcatA(pszPath, pszExtension);
    105   return 1;
    106 }
    107 
    108 ODINFUNCTION2(BOOL, PathAddExtensionW, LPWSTR, pszPath, LPWSTR, pszExtension)
    109 {
    110   lstrcatW(pszPath, pszExtension);
    111   return 1;
    112 }
    113 
Note: See TracChangeset for help on using the changeset viewer.