1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
|
// 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.
#include "precomp.h"
class CBalBootstrapperEngine : public IBootstrapperEngine
{
public: // IUnknown
virtual STDMETHODIMP QueryInterface(
__in REFIID riid,
__out LPVOID *ppvObject
)
{
if (!ppvObject)
{
return E_INVALIDARG;
}
*ppvObject = NULL;
if (::IsEqualIID(__uuidof(IBootstrapperEngine), riid))
{
*ppvObject = static_cast<IBootstrapperEngine*>(this);
}
else if (::IsEqualIID(IID_IMarshal, riid))
{
return m_pFreeThreadedMarshaler->QueryInterface(riid, ppvObject);
}
else if (::IsEqualIID(IID_IUnknown, riid))
{
*ppvObject = reinterpret_cast<IUnknown*>(this);
}
else // no interface for requested iid
{
return E_NOINTERFACE;
}
AddRef();
return S_OK;
}
virtual STDMETHODIMP_(ULONG) AddRef()
{
return ::InterlockedIncrement(&this->m_cReferences);
}
virtual STDMETHODIMP_(ULONG) Release()
{
long l = ::InterlockedDecrement(&this->m_cReferences);
if (0 < l)
{
return l;
}
delete this;
return 0;
}
public: // IBootstrapperEngine
virtual STDMETHODIMP GetPackageCount(
__out DWORD* pcPackages
)
{
HRESULT hr = S_OK;
BAENGINE_GETPACKAGECOUNT_ARGS args = { };
BAENGINE_GETPACKAGECOUNT_RESULTS results = { };
ExitOnNull(pcPackages, hr, E_INVALIDARG, "pcPackages is required");
args.cbSize = sizeof(args);
results.cbSize = sizeof(results);
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_GETPACKAGECOUNT, &args, &results, m_pvBAEngineProcContext);
*pcPackages = results.cPackages;
LExit:
return hr;
}
virtual STDMETHODIMP GetVariableNumeric(
__in_z LPCWSTR wzVariable,
__out LONGLONG* pllValue
)
{
HRESULT hr = S_OK;
BAENGINE_GETVARIABLENUMERIC_ARGS args = { };
BAENGINE_GETVARIABLENUMERIC_RESULTS results = { };
ExitOnNull(pllValue, hr, E_INVALIDARG, "pllValue is required");
args.cbSize = sizeof(args);
args.wzVariable = wzVariable;
results.cbSize = sizeof(results);
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_GETVARIABLENUMERIC, &args, &results, m_pvBAEngineProcContext);
*pllValue = results.llValue;
LExit:
SecureZeroMemory(&results, sizeof(results));
return hr;
}
virtual STDMETHODIMP GetVariableString(
__in_z LPCWSTR wzVariable,
__out_ecount_opt(*pcchValue) LPWSTR wzValue,
__inout SIZE_T* pcchValue
)
{
HRESULT hr = S_OK;
BAENGINE_GETVARIABLESTRING_ARGS args = { };
BAENGINE_GETVARIABLESTRING_RESULTS results = { };
ExitOnNull(pcchValue, hr, E_INVALIDARG, "pcchValue is required");
args.cbSize = sizeof(args);
args.wzVariable = wzVariable;
results.cbSize = sizeof(results);
results.wzValue = wzValue;
results.cchValue = *pcchValue;
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_GETVARIABLESTRING, &args, &results, m_pvBAEngineProcContext);
*pcchValue = results.cchValue;
LExit:
return hr;
}
virtual STDMETHODIMP GetVariableVersion(
__in_z LPCWSTR wzVariable,
__out_ecount_opt(*pcchValue) LPWSTR wzValue,
__inout SIZE_T* pcchValue
)
{
HRESULT hr = S_OK;
BAENGINE_GETVARIABLEVERSION_ARGS args = { };
BAENGINE_GETVARIABLEVERSION_RESULTS results = { };
ExitOnNull(pcchValue, hr, E_INVALIDARG, "pcchValue is required");
args.cbSize = sizeof(args);
args.wzVariable = wzVariable;
results.cbSize = sizeof(results);
results.wzValue = wzValue;
results.cchValue = *pcchValue;
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_GETVARIABLEVERSION, &args, &results, m_pvBAEngineProcContext);
*pcchValue = results.cchValue;
LExit:
return hr;
}
virtual STDMETHODIMP GetRelatedBundleVariable(
__in_z LPCWSTR wzBundleId,
__in_z LPCWSTR wzVariable,
__out_ecount_opt(*pcchValue) LPWSTR wzValue,
__inout SIZE_T* pcchValue
)
{
HRESULT hr = S_OK;
BAENGINE_GETRELATEDBUNDLEVARIABLE_ARGS args = { };
BAENGINE_GETRELATEDBUNDLEVARIABLE_RESULTS results = { };
ExitOnNull(pcchValue, hr, E_INVALIDARG, "pcchValue is required");
args.cbSize = sizeof(args);
args.wzBundleId = wzBundleId;
args.wzVariable = wzVariable;
results.cbSize = sizeof(results);
results.wzValue = wzValue;
results.cchValue = *pcchValue;
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_GETRELATEDBUNDLEVARIABLE, &args, &results, m_pvBAEngineProcContext);
*pcchValue = results.cchValue;
LExit:
return hr;
}
virtual STDMETHODIMP FormatString(
__in_z LPCWSTR wzIn,
__out_ecount_opt(*pcchOut) LPWSTR wzOut,
__inout SIZE_T* pcchOut
)
{
HRESULT hr = S_OK;
BAENGINE_FORMATSTRING_ARGS args = { };
BAENGINE_FORMATSTRING_RESULTS results = { };
ExitOnNull(pcchOut, hr, E_INVALIDARG, "pcchOut is required");
args.cbSize = sizeof(args);
args.wzIn = wzIn;
results.cbSize = sizeof(results);
results.wzOut = wzOut;
results.cchOut = *pcchOut;
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_FORMATSTRING, &args, &results, m_pvBAEngineProcContext);
*pcchOut = results.cchOut;
LExit:
return hr;
}
virtual STDMETHODIMP EscapeString(
__in_z LPCWSTR wzIn,
__out_ecount_opt(*pcchOut) LPWSTR wzOut,
__inout SIZE_T* pcchOut
)
{
HRESULT hr = S_OK;
BAENGINE_ESCAPESTRING_ARGS args = { };
BAENGINE_ESCAPESTRING_RESULTS results = { };
ExitOnNull(pcchOut, hr, E_INVALIDARG, "pcchOut is required");
args.cbSize = sizeof(args);
args.wzIn = wzIn;
results.cbSize = sizeof(results);
results.wzOut = wzOut;
results.cchOut = *pcchOut;
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_ESCAPESTRING, &args, &results, m_pvBAEngineProcContext);
*pcchOut = results.cchOut;
LExit:
return hr;
}
virtual STDMETHODIMP EvaluateCondition(
__in_z LPCWSTR wzCondition,
__out BOOL* pf
)
{
HRESULT hr = S_OK;
BAENGINE_EVALUATECONDITION_ARGS args = { };
BAENGINE_EVALUATECONDITION_RESULTS results = { };
ExitOnNull(pf, hr, E_INVALIDARG, "pf is required");
args.cbSize = sizeof(args);
args.wzCondition = wzCondition;
results.cbSize = sizeof(results);
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_EVALUATECONDITION, &args, &results, m_pvBAEngineProcContext);
*pf = results.f;
LExit:
return hr;
}
virtual STDMETHODIMP Log(
__in BOOTSTRAPPER_LOG_LEVEL level,
__in_z LPCWSTR wzMessage
)
{
BAENGINE_LOG_ARGS args = { };
BAENGINE_LOG_RESULTS results = { };
args.cbSize = sizeof(args);
args.level = level;
args.wzMessage = wzMessage;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_LOG, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP SendEmbeddedError(
__in DWORD dwErrorCode,
__in_z_opt LPCWSTR wzMessage,
__in DWORD dwUIHint,
__out int* pnResult
)
{
HRESULT hr = S_OK;
BAENGINE_SENDEMBEDDEDERROR_ARGS args = { };
BAENGINE_SENDEMBEDDEDERROR_RESULTS results = { };
ExitOnNull(pnResult, hr, E_INVALIDARG, "pnResult is required");
args.cbSize = sizeof(args);
args.dwErrorCode = dwErrorCode;
args.wzMessage = wzMessage;
args.dwUIHint = dwUIHint;
results.cbSize = sizeof(results);
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SENDEMBEDDEDERROR, &args, &results, m_pvBAEngineProcContext);
*pnResult = results.nResult;
LExit:
return hr;
}
virtual STDMETHODIMP SendEmbeddedProgress(
__in DWORD dwProgressPercentage,
__in DWORD dwOverallProgressPercentage,
__out int* pnResult
)
{
HRESULT hr = S_OK;
BAENGINE_SENDEMBEDDEDPROGRESS_ARGS args = { };
BAENGINE_SENDEMBEDDEDPROGRESS_RESULTS results = { };
ExitOnNull(pnResult, hr, E_INVALIDARG, "pnResult is required");
args.cbSize = sizeof(args);
args.dwProgressPercentage = dwProgressPercentage;
args.dwOverallProgressPercentage = dwOverallProgressPercentage;
results.cbSize = sizeof(results);
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SENDEMBEDDEDPROGRESS, &args, &results, m_pvBAEngineProcContext);
*pnResult = results.nResult;
LExit:
return hr;
}
virtual STDMETHODIMP SetUpdate(
__in_z_opt LPCWSTR wzLocalSource,
__in_z_opt LPCWSTR wzDownloadSource,
__in DWORD64 qwSize,
__in BOOTSTRAPPER_UPDATE_HASH_TYPE hashType,
__in_z_opt LPCWSTR wzHash
)
{
BAENGINE_SETUPDATE_ARGS args = { };
BAENGINE_SETUPDATE_RESULTS results = { };
args.cbSize = sizeof(args);
args.wzLocalSource = wzLocalSource;
args.wzDownloadSource = wzDownloadSource;
args.qwSize = qwSize;
args.hashType = hashType;
args.wzHash = wzHash;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SETUPDATE, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP SetLocalSource(
__in_z LPCWSTR wzPackageOrContainerId,
__in_z_opt LPCWSTR wzPayloadId,
__in_z LPCWSTR wzPath
)
{
BAENGINE_SETLOCALSOURCE_ARGS args = { };
BAENGINE_SETLOCALSOURCE_RESULTS results = { };
args.cbSize = sizeof(args);
args.wzPackageOrContainerId = wzPackageOrContainerId;
args.wzPayloadId = wzPayloadId;
args.wzPath = wzPath;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SETLOCALSOURCE, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP SetDownloadSource(
__in_z LPCWSTR wzPackageOrContainerId,
__in_z_opt LPCWSTR wzPayloadId,
__in_z LPCWSTR wzUrl,
__in_z_opt LPCWSTR wzUser,
__in_z_opt LPCWSTR wzPassword
)
{
BAENGINE_SETDOWNLOADSOURCE_ARGS args = { };
BAENGINE_SETDOWNLOADSOURCE_RESULTS results = { };
args.cbSize = sizeof(args);
args.wzPackageOrContainerId = wzPackageOrContainerId;
args.wzPayloadId = wzPayloadId;
args.wzUrl = wzUrl;
args.wzUser = wzUser;
args.wzPassword = wzPassword;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SETDOWNLOADSOURCE, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP SetVariableNumeric(
__in_z LPCWSTR wzVariable,
__in LONGLONG llValue
)
{
BAENGINE_SETVARIABLENUMERIC_ARGS args = { };
BAENGINE_SETVARIABLENUMERIC_RESULTS results = { };
args.cbSize = sizeof(args);
args.wzVariable = wzVariable;
args.llValue = llValue;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SETVARIABLENUMERIC, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP SetVariableString(
__in_z LPCWSTR wzVariable,
__in_z_opt LPCWSTR wzValue,
__in BOOL fFormatted
)
{
BAENGINE_SETVARIABLESTRING_ARGS args = { };
BAENGINE_SETVARIABLESTRING_RESULTS results = { };
args.cbSize = sizeof(args);
args.wzVariable = wzVariable;
args.wzValue = wzValue;
args.fFormatted = fFormatted;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SETVARIABLESTRING, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP SetVariableVersion(
__in_z LPCWSTR wzVariable,
__in_z_opt LPCWSTR wzValue
)
{
BAENGINE_SETVARIABLEVERSION_ARGS args = { };
BAENGINE_SETVARIABLEVERSION_RESULTS results = { };
args.cbSize = sizeof(args);
args.wzVariable = wzVariable;
args.wzValue = wzValue;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SETVARIABLEVERSION, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP CloseSplashScreen()
{
BAENGINE_CLOSESPLASHSCREEN_ARGS args = { };
BAENGINE_CLOSESPLASHSCREEN_RESULTS results = { };
args.cbSize = sizeof(args);
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_CLOSESPLASHSCREEN, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP Detect(
__in_opt HWND hwndParent
)
{
BAENGINE_DETECT_ARGS args = { };
BAENGINE_DETECT_RESULTS results = { };
args.cbSize = sizeof(args);
args.hwndParent = hwndParent;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_DETECT, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP Plan(
__in BOOTSTRAPPER_ACTION action
)
{
BAENGINE_PLAN_ARGS args = { };
BAENGINE_PLAN_RESULTS results = { };
args.cbSize = sizeof(args);
args.action = action;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_PLAN, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP Elevate(
__in_opt HWND hwndParent
)
{
BAENGINE_ELEVATE_ARGS args = { };
BAENGINE_ELEVATE_RESULTS results = { };
args.cbSize = sizeof(args);
args.hwndParent = hwndParent;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_ELEVATE, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP Apply(
__in HWND hwndParent
)
{
BAENGINE_APPLY_ARGS args = { };
BAENGINE_APPLY_RESULTS results = { };
args.cbSize = sizeof(args);
args.hwndParent = hwndParent;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_APPLY, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP Quit(
__in DWORD dwExitCode
)
{
BAENGINE_QUIT_ARGS args = { };
BAENGINE_QUIT_RESULTS results = { };
args.cbSize = sizeof(args);
args.dwExitCode = dwExitCode;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_QUIT, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP LaunchApprovedExe(
__in_opt HWND hwndParent,
__in_z LPCWSTR wzApprovedExeForElevationId,
__in_z_opt LPCWSTR wzArguments,
__in DWORD dwWaitForInputIdleTimeout
)
{
BAENGINE_LAUNCHAPPROVEDEXE_ARGS args = { };
BAENGINE_LAUNCHAPPROVEDEXE_RESULTS results = { };
args.cbSize = sizeof(args);
args.hwndParent = hwndParent;
args.wzApprovedExeForElevationId = wzApprovedExeForElevationId;
args.wzArguments = wzArguments;
args.dwWaitForInputIdleTimeout = dwWaitForInputIdleTimeout;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_LAUNCHAPPROVEDEXE, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP SetUpdateSource(
__in_z LPCWSTR wzUrl
)
{
BAENGINE_SETUPDATESOURCE_ARGS args = { };
BAENGINE_SETUPDATESOURCE_RESULTS results = { };
args.cbSize = sizeof(args);
args.wzUrl = wzUrl;
results.cbSize = sizeof(results);
return m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_SETUPDATESOURCE, &args, &results, m_pvBAEngineProcContext);
}
virtual STDMETHODIMP CompareVersions(
__in_z LPCWSTR wzVersion1,
__in_z LPCWSTR wzVersion2,
__out int* pnResult
)
{
HRESULT hr = S_OK;
BAENGINE_COMPAREVERSIONS_ARGS args = { };
BAENGINE_COMPAREVERSIONS_RESULTS results = { };
ExitOnNull(pnResult, hr, E_INVALIDARG, "pnResult is required");
args.cbSize = sizeof(args);
args.wzVersion1 = wzVersion1;
args.wzVersion2 = wzVersion2;
results.cbSize = sizeof(results);
hr = m_pfnBAEngineProc(BOOTSTRAPPER_ENGINE_MESSAGE_COMPAREVERSIONS, &args, &results, m_pvBAEngineProcContext);
*pnResult = results.nResult;
LExit:
return hr;
}
public:
HRESULT Init()
{
return ::CoCreateFreeThreadedMarshaler(this, &m_pFreeThreadedMarshaler);
}
CBalBootstrapperEngine(
__in PFN_BOOTSTRAPPER_ENGINE_PROC pfnBAEngineProc,
__in_opt LPVOID pvBAEngineProcContext
)
{
m_cReferences = 1;
m_pfnBAEngineProc = pfnBAEngineProc;
m_pvBAEngineProcContext = pvBAEngineProcContext;
m_pFreeThreadedMarshaler = NULL;
}
~CBalBootstrapperEngine()
{
ReleaseObject(m_pFreeThreadedMarshaler);
}
private:
long m_cReferences;
PFN_BOOTSTRAPPER_ENGINE_PROC m_pfnBAEngineProc;
LPVOID m_pvBAEngineProcContext;
IUnknown* m_pFreeThreadedMarshaler;
};
HRESULT BalBootstrapperEngineCreate(
__in PFN_BOOTSTRAPPER_ENGINE_PROC pfnBAEngineProc,
__in_opt LPVOID pvBAEngineProcContext,
__out IBootstrapperEngine** ppBootstrapperEngine
)
{
HRESULT hr = S_OK;
CBalBootstrapperEngine* pBootstrapperEngine = NULL;
pBootstrapperEngine = new CBalBootstrapperEngine(pfnBAEngineProc, pvBAEngineProcContext);
ExitOnNull(pBootstrapperEngine, hr, E_OUTOFMEMORY, "Failed to allocate new BalBootstrapperEngine object.");
hr = pBootstrapperEngine->Init();
ExitOnFailure(hr, "Failed to initialize CBalBootstrapperEngine.");
hr = pBootstrapperEngine->QueryInterface(IID_PPV_ARGS(ppBootstrapperEngine));
ExitOnFailure(hr, "Failed to QI for IBootstrapperEngine from BalBootstrapperEngine object.");
LExit:
ReleaseObject(pBootstrapperEngine);
return hr;
}
|