diff options
Diffstat (limited to 'src/api/burn/balutil')
-rw-r--r-- | src/api/burn/balutil/BalBootstrapperEngine.cpp | 6 | ||||
-rw-r--r-- | src/api/burn/balutil/inc/IBootstrapperEngine.h | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/src/api/burn/balutil/BalBootstrapperEngine.cpp b/src/api/burn/balutil/BalBootstrapperEngine.cpp index 301b88a5..898a8a15 100644 --- a/src/api/burn/balutil/BalBootstrapperEngine.cpp +++ b/src/api/burn/balutil/BalBootstrapperEngine.cpp | |||
@@ -312,8 +312,7 @@ public: // IBootstrapperEngine | |||
312 | __in_z_opt LPCWSTR wzDownloadSource, | 312 | __in_z_opt LPCWSTR wzDownloadSource, |
313 | __in DWORD64 qwSize, | 313 | __in DWORD64 qwSize, |
314 | __in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType, | 314 | __in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType, |
315 | __in_bcount_opt(cbHash) BYTE* rgbHash, | 315 | __in_z_opt LPCWSTR wzHash |
316 | __in DWORD cbHash | ||
317 | ) | 316 | ) |
318 | { | 317 | { |
319 | BAENGINE_SETUPDATE_ARGS args = { }; | 318 | BAENGINE_SETUPDATE_ARGS args = { }; |
@@ -324,8 +323,7 @@ public: // IBootstrapperEngine | |||
324 | args.wzDownloadSource = wzDownloadSource; | 323 | args.wzDownloadSource = wzDownloadSource; |
325 | args.qwSize = qwSize; | 324 | args.qwSize = qwSize; |
326 | args.hashType = hashType; | 325 | args.hashType = hashType; |
327 | args.rgbHash = rgbHash; | 326 | args.wzHash = wzHash; |
328 | args.cbHash = cbHash; | ||
329 | 327 | ||
330 | results.cbSize = sizeof(results); | 328 | results.cbSize = sizeof(results); |
331 | 329 | ||
diff --git a/src/api/burn/balutil/inc/IBootstrapperEngine.h b/src/api/burn/balutil/inc/IBootstrapperEngine.h index ccb07f4f..2a108223 100644 --- a/src/api/burn/balutil/inc/IBootstrapperEngine.h +++ b/src/api/burn/balutil/inc/IBootstrapperEngine.h | |||
@@ -65,8 +65,7 @@ DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-8 | |||
65 | __in_z_opt LPCWSTR wzDownloadSource, | 65 | __in_z_opt LPCWSTR wzDownloadSource, |
66 | __in DWORD64 qwSize, | 66 | __in DWORD64 qwSize, |
67 | __in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType, | 67 | __in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType, |
68 | __in_bcount_opt(cbHash) BYTE* rgbHash, | 68 | __in_z_opt LPCWSTR wzHash |
69 | __in DWORD cbHash | ||
70 | ) = 0; | 69 | ) = 0; |
71 | 70 | ||
72 | STDMETHOD(SetLocalSource)( | 71 | STDMETHOD(SetLocalSource)( |