diff options
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/pathutil.h')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/pathutil.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h b/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h index f36e6ebc..971ef887 100644 --- a/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h +++ b/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h | |||
@@ -299,6 +299,16 @@ DAPI_(HRESULT) PathConcatRelativeToBase( | |||
299 | ); | 299 | ); |
300 | 300 | ||
301 | /******************************************************************* | 301 | /******************************************************************* |
302 | PathConcatRelativeToFullyQualifiedBase - ensures the base path is | ||
303 | fully qualified and then calls PathConcatRelativeToBase. | ||
304 | *******************************************************************/ | ||
305 | DAPI_(HRESULT) PathConcatRelativeToFullyQualifiedBase( | ||
306 | __in LPCWSTR wzBase, | ||
307 | __in_opt LPCWSTR wzRelative, | ||
308 | __deref_out_z LPWSTR* psczCombined | ||
309 | ); | ||
310 | |||
311 | /******************************************************************* | ||
302 | PathCompareCanonicalized - canonicalizes the two paths using PathCanonicalizeForComparison | 312 | PathCompareCanonicalized - canonicalizes the two paths using PathCanonicalizeForComparison |
303 | which does not resolve relative paths into fully qualified paths. | 313 | which does not resolve relative paths into fully qualified paths. |
304 | The strings are then compared using ::CompareStringW(). | 314 | The strings are then compared using ::CompareStringW(). |