Update for WiX 3.10

This commit is contained in:
2015-11-02 10:34:51 -05:00
parent 5c97ff1e11
commit 857b9b5c4c
40 changed files with 3877 additions and 2750 deletions

View File

@@ -47,7 +47,7 @@ extern "C" HRESULT WINAPI BootstrapperApplicationCreate(
BalInitialize(pEngine);
hr = CreateBootstrapperApplication(vhInstance, FALSE, pEngine, pCommand, ppApplication);
hr = CreateBootstrapperApplication(vhInstance, FALSE, S_OK, pEngine, pCommand, ppApplication);
BalExitOnFailure(hr, "Failed to create bootstrapper application interface.");
LExit:
@@ -59,3 +59,28 @@ extern "C" void WINAPI BootstrapperApplicationDestroy()
{
BalUninitialize();
}
extern "C" HRESULT WINAPI MbaPrereqBootstrapperApplicationCreate(
__in HRESULT hrHostInitialization,
__in IBootstrapperEngine* pEngine,
__in const BOOTSTRAPPER_COMMAND* pCommand,
__out IBootstrapperApplication** ppApplication
)
{
HRESULT hr = S_OK;
BalInitialize(pEngine);
hr = CreateBootstrapperApplication(vhInstance, TRUE, hrHostInitialization, pEngine, pCommand, ppApplication);
BalExitOnFailure(hr, "Failed to create managed prerequisite bootstrapper application interface.");
LExit:
return hr;
}
extern "C" void WINAPI MbaPrereqBootstrapperApplicationDestroy()
{
BalUninitialize();
}