diff options
Diffstat (limited to 'src/burn/engine/inc/engine.h')
| -rw-r--r-- | src/burn/engine/inc/engine.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/burn/engine/inc/engine.h b/src/burn/engine/inc/engine.h new file mode 100644 index 00000000..808bb91a --- /dev/null +++ b/src/burn/engine/inc/engine.h | |||
| @@ -0,0 +1,27 @@ | |||
| 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 | |||
| 5 | #if defined(__cplusplus) | ||
| 6 | extern "C" { | ||
| 7 | #endif | ||
| 8 | |||
| 9 | |||
| 10 | // function declarations | ||
| 11 | |||
| 12 | BOOL EngineInCleanRoom( | ||
| 13 | __in_z_opt LPCWSTR wzCommandLine | ||
| 14 | ); | ||
| 15 | |||
| 16 | HRESULT EngineRun( | ||
| 17 | __in HINSTANCE hInstance, | ||
| 18 | __in HANDLE hEngineFile, | ||
| 19 | __in_z_opt LPCWSTR wzCommandLine, | ||
| 20 | __in int nCmdShow, | ||
| 21 | __out DWORD* pdwExitCode | ||
| 22 | ); | ||
| 23 | |||
| 24 | |||
| 25 | #if defined(__cplusplus) | ||
| 26 | } | ||
| 27 | #endif | ||
