Changeset 4081 for trunk/src/shlwapi/pathcpp.cpp
- Timestamp:
- Aug 24, 2000, 11:33:33 AM (25 years ago)
- 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 birdExp $ */1 /* $Id: pathcpp.cpp,v 1.4 2000-08-24 09:32:42 sandervl Exp $ */ 2 2 3 3 /* … … 98 98 return (LPWSTR)pszPath; 99 99 } 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.