blob: c374281659e7f608d00d411c4c31c776eaa41468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
// 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.
EXTERN_C HRESULT CreateWixPrerequisiteBootstrapperApplication(
__in HINSTANCE hInstance,
__out IBootstrapperApplication** ppApplication
);
EXTERN_C HRESULT CreateWixStandardBootstrapperApplication(
__in HINSTANCE hInstance,
__out IBootstrapperApplication** ppApplication
);
|