main
h 20 lines 606 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 <IBootstrapperExtensionEngine.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 // function declarations
11
12 HRESULT BextBootstrapperExtensionEngineCreate(
13 __in PFN_BOOTSTRAPPER_EXTENSION_ENGINE_PROC pfnBootstrapperExtensionEngineProc,
14 __in_opt LPVOID pvBootstrapperExtensionEngineProcContext,
15 __out IBootstrapperExtensionEngine** ppEngineForExtension
16 );
17
18 #ifdef __cplusplus
19 }
20 #endif