From 61847dddd4fd497057c780658e383c4627de19ec Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sat, 29 Dec 2018 22:12:08 -0600 Subject: Import code from old v4 repo --- src/engine/inc/engine.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/engine/inc/engine.h (limited to 'src/engine/inc/engine.h') diff --git a/src/engine/inc/engine.h b/src/engine/inc/engine.h new file mode 100644 index 00000000..808bb91a --- /dev/null +++ b/src/engine/inc/engine.h @@ -0,0 +1,27 @@ +#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. + + +#if defined(__cplusplus) +extern "C" { +#endif + + +// function declarations + +BOOL EngineInCleanRoom( + __in_z_opt LPCWSTR wzCommandLine + ); + +HRESULT EngineRun( + __in HINSTANCE hInstance, + __in HANDLE hEngineFile, + __in_z_opt LPCWSTR wzCommandLine, + __in int nCmdShow, + __out DWORD* pdwExitCode + ); + + +#if defined(__cplusplus) +} +#endif -- cgit v1.2.3-55-g6feb