aboutsummaryrefslogtreecommitdiff
path: root/src/engine/variable.cpp
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-12-26 21:15:06 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-01-11 12:20:07 -0600
commit5bab3f6ae97b62bb6e79378010c08a13e48fde5a (patch)
tree01d648f19b9523de128686443afd407afc8db84f /src/engine/variable.cpp
parentb20a77911c6a2b096f021639e0daadae7430091c (diff)
downloadwix-5bab3f6ae97b62bb6e79378010c08a13e48fde5a.tar.gz
wix-5bab3f6ae97b62bb6e79378010c08a13e48fde5a.tar.bz2
wix-5bab3f6ae97b62bb6e79378010c08a13e48fde5a.zip
Upgrade to latest dutil as first step for x64 and ARM64
Diffstat (limited to 'src/engine/variable.cpp')
-rw-r--r--src/engine/variable.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/variable.cpp b/src/engine/variable.cpp
index 4bf73a9b..ea84752d 100644
--- a/src/engine/variable.cpp
+++ b/src/engine/variable.cpp
@@ -53,7 +53,7 @@ static HRESULT FormatString(
53 __in BURN_VARIABLES* pVariables, 53 __in BURN_VARIABLES* pVariables,
54 __in_z LPCWSTR wzIn, 54 __in_z LPCWSTR wzIn,
55 __out_z_opt LPWSTR* psczOut, 55 __out_z_opt LPWSTR* psczOut,
56 __out_opt DWORD* pcchOut, 56 __out_opt SIZE_T* pcchOut,
57 __in BOOL fObfuscateHiddenVariables, 57 __in BOOL fObfuscateHiddenVariables,
58 __out BOOL* pfContainsHiddenVariable 58 __out BOOL* pfContainsHiddenVariable
59 ); 59 );
@@ -704,7 +704,7 @@ extern "C" HRESULT VariableFormatString(
704 __in BURN_VARIABLES* pVariables, 704 __in BURN_VARIABLES* pVariables,
705 __in_z LPCWSTR wzIn, 705 __in_z LPCWSTR wzIn,
706 __out_z_opt LPWSTR* psczOut, 706 __out_z_opt LPWSTR* psczOut,
707 __out_opt DWORD* pcchOut 707 __out_opt SIZE_T* pcchOut
708 ) 708 )
709{ 709{
710 return FormatString(pVariables, wzIn, psczOut, pcchOut, FALSE, NULL); 710 return FormatString(pVariables, wzIn, psczOut, pcchOut, FALSE, NULL);
@@ -714,7 +714,7 @@ extern "C" HRESULT VariableFormatStringObfuscated(
714 __in BURN_VARIABLES* pVariables, 714 __in BURN_VARIABLES* pVariables,
715 __in_z LPCWSTR wzIn, 715 __in_z LPCWSTR wzIn,
716 __out_z_opt LPWSTR* psczOut, 716 __out_z_opt LPWSTR* psczOut,
717 __out_opt DWORD* pcchOut 717 __out_opt SIZE_T* pcchOut
718 ) 718 )
719{ 719{
720 return FormatString(pVariables, wzIn, psczOut, pcchOut, TRUE, NULL); 720 return FormatString(pVariables, wzIn, psczOut, pcchOut, TRUE, NULL);
@@ -1085,7 +1085,7 @@ static HRESULT FormatString(
1085 __in BURN_VARIABLES* pVariables, 1085 __in BURN_VARIABLES* pVariables,
1086 __in_z LPCWSTR wzIn, 1086 __in_z LPCWSTR wzIn,
1087 __out_z_opt LPWSTR* psczOut, 1087 __out_z_opt LPWSTR* psczOut,
1088 __out_opt DWORD* pcchOut, 1088 __out_opt SIZE_T* pcchOut,
1089 __in BOOL fObfuscateHiddenVariables, 1089 __in BOOL fObfuscateHiddenVariables,
1090 __out BOOL* pfContainsHiddenVariable 1090 __out BOOL* pfContainsHiddenVariable
1091 ) 1091 )