aboutsummaryrefslogtreecommitdiff
path: root/src/engine/variable.cpp
diff options
context:
space:
mode:
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 )