diff options
Diffstat (limited to 'src/balutil/BalBootstrapperEngine.cpp')
-rw-r--r-- | src/balutil/BalBootstrapperEngine.cpp | 4 |
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 | ||