From 62352fabd541aaa9d0a2c957c4bdd4b9c682df9c Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 11 Dec 2019 19:34:47 +1100 Subject: Import files from BootstrapperCore repo. --- src/balutil/inc/IBootstrapperApplicationFactory.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/balutil/inc/IBootstrapperApplicationFactory.h (limited to 'src/balutil') diff --git a/src/balutil/inc/IBootstrapperApplicationFactory.h b/src/balutil/inc/IBootstrapperApplicationFactory.h new file mode 100644 index 00000000..e29c23bc --- /dev/null +++ b/src/balutil/inc/IBootstrapperApplicationFactory.h @@ -0,0 +1,14 @@ +#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. + + +#include "precomp.h" + +DECLARE_INTERFACE_IID_(IBootstrapperApplicationFactory, IUnknown, "2965A12F-AC7B-43A0-85DF-E4B2168478A4") +{ + STDMETHOD(Create)( + __in IBootstrapperEngine* pEngine, + __in const BOOTSTRAPPER_COMMAND *pCommand, + __out IBootstrapperApplication **ppApplication + ); +}; -- cgit v1.2.3-55-g6feb