diff options
Diffstat (limited to 'src/api/burn/balutil/inc/IBootstrapperEngine.h')
-rw-r--r-- | src/api/burn/balutil/inc/IBootstrapperEngine.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/api/burn/balutil/inc/IBootstrapperEngine.h b/src/api/burn/balutil/inc/IBootstrapperEngine.h index bfa13997..3c1afb77 100644 --- a/src/api/burn/balutil/inc/IBootstrapperEngine.h +++ b/src/api/burn/balutil/inc/IBootstrapperEngine.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | 2 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
3 | 3 | ||
4 | #include <baenginetypes.h> | ||
4 | 5 | ||
5 | DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-81512C29C2FB") | 6 | DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-81512C29C2FB") |
6 | { | 7 | { |
@@ -65,7 +66,8 @@ DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-8 | |||
65 | __in_z_opt LPCWSTR wzDownloadSource, | 66 | __in_z_opt LPCWSTR wzDownloadSource, |
66 | __in DWORD64 qwSize, | 67 | __in DWORD64 qwSize, |
67 | __in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType, | 68 | __in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType, |
68 | __in_z_opt LPCWSTR wzHash | 69 | __in_z_opt LPCWSTR wzHash, |
70 | __in_z_opt LPCWSTR wzUpdatePackageId | ||
69 | ) = 0; | 71 | ) = 0; |
70 | 72 | ||
71 | STDMETHOD(SetLocalSource)( | 73 | STDMETHOD(SetLocalSource)( |
@@ -79,7 +81,8 @@ DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-8 | |||
79 | __in_z_opt LPCWSTR wzPayloadId, | 81 | __in_z_opt LPCWSTR wzPayloadId, |
80 | __in_z LPCWSTR wzUrl, | 82 | __in_z LPCWSTR wzUrl, |
81 | __in_z_opt LPCWSTR wzUser, | 83 | __in_z_opt LPCWSTR wzUser, |
82 | __in_z_opt LPCWSTR wzPassword | 84 | __in_z_opt LPCWSTR wzPassword, |
85 | __in_z_opt LPCWSTR wzAuthorizationHeader | ||
83 | ) = 0; | 86 | ) = 0; |
84 | 87 | ||
85 | STDMETHOD(SetVariableNumeric)( | 88 | STDMETHOD(SetVariableNumeric)( |
@@ -128,7 +131,8 @@ DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-8 | |||
128 | ) = 0; | 131 | ) = 0; |
129 | 132 | ||
130 | STDMETHOD(SetUpdateSource)( | 133 | STDMETHOD(SetUpdateSource)( |
131 | __in_z LPCWSTR wzUrl | 134 | __in_z LPCWSTR wzUrl, |
135 | __in_z_opt LPCWSTR wzAuthorizationHeader | ||
132 | ) = 0; | 136 | ) = 0; |
133 | 137 | ||
134 | STDMETHOD(CompareVersions)( | 138 | STDMETHOD(CompareVersions)( |
@@ -143,5 +147,4 @@ DECLARE_INTERFACE_IID_(IBootstrapperEngine, IUnknown, "6480D616-27A0-44D7-905B-8 | |||
143 | __out_ecount_opt(*pcchValue) LPWSTR wzValue, | 147 | __out_ecount_opt(*pcchValue) LPWSTR wzValue, |
144 | __inout SIZE_T* pcchValue | 148 | __inout SIZE_T* pcchValue |
145 | ) = 0; | 149 | ) = 0; |
146 | |||
147 | }; | 150 | }; |