Changeset 3562 for trunk/src/shlwapi/pathcpp.cpp
- Timestamp:
- May 19, 2000, 2:10:04 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shlwapi/pathcpp.cpp
r3550 r3562 1 /* $Id: pathcpp.cpp,v 1. 1 2000-05-18 14:07:23sandervl Exp $ */1 /* $Id: pathcpp.cpp,v 1.2 2000-05-19 12:10:04 sandervl Exp $ */ 2 2 3 3 /* … … 37 37 38 38 #include "debugtools.h" 39 40 #include <winreg.h> 41 42 #include <heapstring.h> 39 43 40 44 ODINDEBUGCHANNEL(SHLWAPI-SHELLPATH) … … 94 98 return (LPWSTR)pszPath; 95 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.