main
h 21 lines 690 Bytes
Raw
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.
3
4 #include "IBootstrapperApplication.h"
5
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
9
10 /*******************************************************************
11 BootstrapperApplicationRun - runs the IBootstrapperApplication until
12 the application quits.
13
14 ********************************************************************/
15 HRESULT __stdcall BootstrapperApplicationRun(
16 __in IBootstrapperApplication* pApplication
17 );
18
19 #if defined(__cplusplus)
20 }
21 #endif