aboutsummaryrefslogtreecommitdiff
path: root/src/balutil/BalBootstrapperEngine.cpp
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-08-01 10:20:31 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-08-09 10:47:30 -0600
commita37013d41f0702cbdf2aee6dce95d26dafc069b4 (patch)
tree16cc67c99f5319279a32a07c1fd1b52dccd13867 /src/balutil/BalBootstrapperEngine.cpp
parent2ded319a01a9ec42b637a677813d394cd7eda6b9 (diff)
downloadwix-a37013d41f0702cbdf2aee6dce95d26dafc069b4.tar.gz
wix-a37013d41f0702cbdf2aee6dce95d26dafc069b4.tar.bz2
wix-a37013d41f0702cbdf2aee6dce95d26dafc069b4.zip
WIXFEAT:4763 Change "string" variable type to literal and add "formatted".
Diffstat (limited to 'src/balutil/BalBootstrapperEngine.cpp')
-rw-r--r--src/balutil/BalBootstrapperEngine.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/balutil/BalBootstrapperEngine.cpp b/src/balutil/BalBootstrapperEngine.cpp
index 945940c5..6a0c66d6 100644
--- a/src/balutil/BalBootstrapperEngine.cpp
+++ b/src/balutil/BalBootstrapperEngine.cpp
@@ -391,7 +391,8 @@ public: // IBootstrapperEngine
391 391
392 virtual STDMETHODIMP SetVariableString( 392 virtual STDMETHODIMP SetVariableString(
393 __in_z LPCWSTR wzVariable, 393 __in_z LPCWSTR wzVariable,
394 __in_z_opt LPCWSTR wzValue 394 __in_z_opt LPCWSTR wzValue,
395 __in BOOL fFormatted
395 ) 396 )
396 { 397 {
397 BAENGINE_SETVARIABLESTRING_ARGS args = { }; 398 BAENGINE_SETVARIABLESTRING_ARGS args = { };
@@ -400,6 +401,7 @@ public: // IBootstrapperEngine
400 args.cbSize = sizeof(args); 401 args.cbSize = sizeof(args);
401 args.wzVariable = wzVariable; 402 args.wzVariable = wzVariable;
402 args.wzValue = wzValue; 403 args.wzValue = wzValue;
404 args.fFormatted = fFormatted;
403 405
404 results.cbSize = sizeof(results); 406 results.cbSize = sizeof(results);
405 407