aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/inc/BundleExtension.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/inc/BundleExtension.h')
-rw-r--r--src/api/burn/inc/BundleExtension.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/api/burn/inc/BundleExtension.h b/src/api/burn/inc/BundleExtension.h
deleted file mode 100644
index 17acff6e..00000000
--- a/src/api/burn/inc/BundleExtension.h
+++ /dev/null
@@ -1,61 +0,0 @@
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 <BundleExtensionEngine.h>
5
6#if defined(__cplusplus)
7extern "C" {
8#endif
9
10enum BUNDLE_EXTENSION_MESSAGE
11{
12 BUNDLE_EXTENSION_MESSAGE_SEARCH,
13};
14
15typedef struct _BUNDLE_EXTENSION_SEARCH_ARGS
16{
17 DWORD cbSize;
18 LPCWSTR wzId;
19 LPCWSTR wzVariable;
20} BUNDLE_EXTENSION_SEARCH_ARGS;
21
22typedef struct _BUNDLE_EXTENSION_SEARCH_RESULTS
23{
24 DWORD cbSize;
25} BUNDLE_EXTENSION_SEARCH_RESULTS;
26
27extern "C" typedef HRESULT(WINAPI *PFN_BUNDLE_EXTENSION_PROC)(
28 __in BUNDLE_EXTENSION_MESSAGE message,
29 __in const LPVOID pvArgs,
30 __inout LPVOID pvResults,
31 __in_opt LPVOID pvContext
32 );
33
34typedef struct _BUNDLE_EXTENSION_CREATE_ARGS
35{
36 DWORD cbSize;
37 DWORD64 qwEngineAPIVersion;
38 PFN_BUNDLE_EXTENSION_ENGINE_PROC pfnBundleExtensionEngineProc;
39 LPVOID pvBundleExtensionEngineProcContext;
40 LPCWSTR wzBootstrapperWorkingFolder;
41 LPCWSTR wzBundleExtensionDataPath;
42 LPCWSTR wzExtensionId;
43} BUNDLE_EXTENSION_CREATE_ARGS;
44
45typedef struct _BUNDLE_EXTENSION_CREATE_RESULTS
46{
47 DWORD cbSize;
48 PFN_BUNDLE_EXTENSION_PROC pfnBundleExtensionProc;
49 LPVOID pvBundleExtensionProcContext;
50} BUNDLE_EXTENSION_CREATE_RESULTS;
51
52extern "C" typedef HRESULT(WINAPI *PFN_BUNDLE_EXTENSION_CREATE)(
53 __in const BUNDLE_EXTENSION_CREATE_ARGS* pArgs,
54 __inout BUNDLE_EXTENSION_CREATE_RESULTS* pResults
55 );
56
57extern "C" typedef void (WINAPI *PFN_BUNDLE_EXTENSION_DESTROY)();
58
59#if defined(__cplusplus)
60}
61#endif