diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-06-03 17:47:31 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-06-07 19:44:36 -0500 |
commit | 8a4d03207633e9fdc364aaed82bd167f844679f9 (patch) | |
tree | 9ca862bb51fd3507fc5867c292aef236e3411867 /src/libs/dutil/WixToolset.DUtil/inc/pathutil.h | |
parent | 5d35ff01e33b8ffdab04a49ddc5927185309391a (diff) | |
download | wix-8a4d03207633e9fdc364aaed82bd167f844679f9.tar.gz wix-8a4d03207633e9fdc364aaed82bd167f844679f9.tar.bz2 wix-8a4d03207633e9fdc364aaed82bd167f844679f9.zip |
Resolve paths while parsing them from the command line.
The current directory is a process wide setting that can potentially be changed by any thread.
Remove fileutil methods that had equivalent pathutil methods.
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 941793f8..871e706b 100644 --- a/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h +++ b/src/libs/dutil/WixToolset.DUtil/inc/pathutil.h | |||
@@ -68,6 +68,16 @@ DAPI_(HRESULT) PathExpand( | |||
68 | ); | 68 | ); |
69 | 69 | ||
70 | /******************************************************************* | 70 | /******************************************************************* |
71 | PathGetFullPathName - wrapper around GetFullPathNameW. | ||
72 | *******************************************************************/ | ||
73 | DAPI_(HRESULT) PathGetFullPathName( | ||
74 | __in_z LPCWSTR wzPath, | ||
75 | __deref_out_z LPWSTR* psczFullPath, | ||
76 | __inout_z_opt LPCWSTR* pwzFileName, | ||
77 | __out_opt SIZE_T* pcch | ||
78 | ); | ||
79 | |||
80 | /******************************************************************* | ||
71 | PathPrefix - prefixes a full path with \\?\ or \\?\UNC as | 81 | PathPrefix - prefixes a full path with \\?\ or \\?\UNC as |
72 | appropriate. | 82 | appropriate. |
73 | ********************************************************************/ | 83 | ********************************************************************/ |