diff options
Diffstat (limited to 'src/bextutil/BextBundleExtensionEngine.cpp')
-rw-r--r-- | src/bextutil/BextBundleExtensionEngine.cpp | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/src/bextutil/BextBundleExtensionEngine.cpp b/src/bextutil/BextBundleExtensionEngine.cpp index 02070a6f..a78b3130 100644 --- a/src/bextutil/BextBundleExtensionEngine.cpp +++ b/src/bextutil/BextBundleExtensionEngine.cpp | |||
@@ -225,23 +225,6 @@ public: // IBundleExtensionEngine | |||
225 | return m_pfnBundleExtensionEngineProc(BUNDLE_EXTENSION_ENGINE_MESSAGE_LOG, &args, &results, m_pvBundleExtensionEngineProcContext); | 225 | return m_pfnBundleExtensionEngineProc(BUNDLE_EXTENSION_ENGINE_MESSAGE_LOG, &args, &results, m_pvBundleExtensionEngineProcContext); |
226 | } | 226 | } |
227 | 227 | ||
228 | virtual STDMETHODIMP SetVariableLiteralString( | ||
229 | __in_z LPCWSTR wzVariable, | ||
230 | __in_z_opt LPCWSTR wzValue | ||
231 | ) | ||
232 | { | ||
233 | BUNDLE_EXTENSION_ENGINE_SETVARIABLELITERALSTRING_ARGS args = { }; | ||
234 | BUNDLE_EXTENSION_ENGINE_SETVARIABLELITERALSTRING_RESULTS results = { }; | ||
235 | |||
236 | args.cbSize = sizeof(args); | ||
237 | args.wzVariable = wzVariable; | ||
238 | args.wzValue = wzValue; | ||
239 | |||
240 | results.cbSize = sizeof(results); | ||
241 | |||
242 | return m_pfnBundleExtensionEngineProc(BUNDLE_EXTENSION_ENGINE_MESSAGE_SETVARIABLELITERALSTRING, &args, &results, m_pvBundleExtensionEngineProcContext); | ||
243 | } | ||
244 | |||
245 | virtual STDMETHODIMP SetVariableNumeric( | 228 | virtual STDMETHODIMP SetVariableNumeric( |
246 | __in_z LPCWSTR wzVariable, | 229 | __in_z LPCWSTR wzVariable, |
247 | __in LONGLONG llValue | 230 | __in LONGLONG llValue |
@@ -261,7 +244,8 @@ public: // IBundleExtensionEngine | |||
261 | 244 | ||
262 | virtual STDMETHODIMP SetVariableString( | 245 | virtual STDMETHODIMP SetVariableString( |
263 | __in_z LPCWSTR wzVariable, | 246 | __in_z LPCWSTR wzVariable, |
264 | __in_z_opt LPCWSTR wzValue | 247 | __in_z_opt LPCWSTR wzValue, |
248 | __in BOOL fFormatted | ||
265 | ) | 249 | ) |
266 | { | 250 | { |
267 | BUNDLE_EXTENSION_ENGINE_SETVARIABLESTRING_ARGS args = { }; | 251 | BUNDLE_EXTENSION_ENGINE_SETVARIABLESTRING_ARGS args = { }; |
@@ -270,6 +254,7 @@ public: // IBundleExtensionEngine | |||
270 | args.cbSize = sizeof(args); | 254 | args.cbSize = sizeof(args); |
271 | args.wzVariable = wzVariable; | 255 | args.wzVariable = wzVariable; |
272 | args.wzValue = wzValue; | 256 | args.wzValue = wzValue; |
257 | args.fFormatted = fFormatted; | ||
273 | 258 | ||
274 | results.cbSize = sizeof(results); | 259 | results.cbSize = sizeof(results); |
275 | 260 | ||