diff options
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/pathutil.h')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/pathutil.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h b/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h index fc6bb3bb..941793f8 100644 --- a/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h +++ b/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h | |||
@@ -237,6 +237,17 @@ DAPI_(HRESULT) PathConcatCch( | |||
237 | ); | 237 | ); |
238 | 238 | ||
239 | /******************************************************************* | 239 | /******************************************************************* |
240 | PathConcatRelativeToBase - canonicalizes a relative path before | ||
241 | concatenating it to the base path to ensure the resulting path | ||
242 | is inside the base path. | ||
243 | *******************************************************************/ | ||
244 | DAPI_(HRESULT) PathConcatRelativeToBase( | ||
245 | __in LPCWSTR wzBase, | ||
246 | __in_opt LPCWSTR wzRelative, | ||
247 | __deref_out_z LPWSTR* psczCombined | ||
248 | ); | ||
249 | |||
250 | /******************************************************************* | ||
240 | PathCompare - compares the fully expanded path of the two paths using | 251 | PathCompare - compares the fully expanded path of the two paths using |
241 | ::CompareStringW(). | 252 | ::CompareStringW(). |
242 | *******************************************************************/ | 253 | *******************************************************************/ |