diff options
Diffstat (limited to 'src/balutil/balutil.cpp')
| -rw-r--r-- | src/balutil/balutil.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/balutil/balutil.cpp b/src/balutil/balutil.cpp index 7567752c..ebfaede4 100644 --- a/src/balutil/balutil.cpp +++ b/src/balutil/balutil.cpp | |||
| @@ -225,7 +225,8 @@ LExit: | |||
| 225 | 225 | ||
| 226 | DAPI_(HRESULT) BalSetStringVariable( | 226 | DAPI_(HRESULT) BalSetStringVariable( |
| 227 | __in_z LPCWSTR wzVariable, | 227 | __in_z LPCWSTR wzVariable, |
| 228 | __in_z_opt LPCWSTR wzValue | 228 | __in_z_opt LPCWSTR wzValue, |
| 229 | __in BOOL fFormatted | ||
| 229 | ) | 230 | ) |
| 230 | { | 231 | { |
| 231 | HRESULT hr = S_OK; | 232 | HRESULT hr = S_OK; |
| @@ -236,7 +237,7 @@ DAPI_(HRESULT) BalSetStringVariable( | |||
| 236 | ExitOnRootFailure(hr, "BalInitialize() must be called first."); | 237 | ExitOnRootFailure(hr, "BalInitialize() must be called first."); |
| 237 | } | 238 | } |
| 238 | 239 | ||
| 239 | hr = vpEngine->SetVariableString(wzVariable, wzValue); | 240 | hr = vpEngine->SetVariableString(wzVariable, wzValue, fFormatted); |
| 240 | 241 | ||
| 241 | LExit: | 242 | LExit: |
| 242 | return hr; | 243 | return hr; |
