From 90cdebbe94c7f60db86965ffb97d9ba51d0bc9fc Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 21 Mar 2024 00:59:21 -0700 Subject: Simplify BootstrapperApplication header files Take this breaking change opportunity to simplify the header files used by BA devs. --- src/api/burn/balutil/inc/BootstrapperApplication.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/api/burn/balutil/inc/BootstrapperApplication.h (limited to 'src/api/burn/balutil/inc/BootstrapperApplication.h') diff --git a/src/api/burn/balutil/inc/BootstrapperApplication.h b/src/api/burn/balutil/inc/BootstrapperApplication.h new file mode 100644 index 00000000..d11fccf0 --- /dev/null +++ b/src/api/burn/balutil/inc/BootstrapperApplication.h @@ -0,0 +1,21 @@ +#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 "IBootstrapperApplication.h" + +#if defined(__cplusplus) +extern "C" { +#endif + +/******************************************************************* + BootstrapperApplicationRun - runs the IBootstrapperApplication until + the application quits. + +********************************************************************/ +HRESULT __stdcall BootstrapperApplicationRun( + __in IBootstrapperApplication* pApplication + ); + +#if defined(__cplusplus) +} +#endif -- cgit v1.2.3-55-g6feb