aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/bextutil/inc/IBootstrapperExtension.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/burn/bextutil/inc/IBootstrapperExtension.h')
-rw-r--r--src/api/burn/bextutil/inc/IBootstrapperExtension.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/api/burn/bextutil/inc/IBootstrapperExtension.h b/src/api/burn/bextutil/inc/IBootstrapperExtension.h
new file mode 100644
index 00000000..4005a9fd
--- /dev/null
+++ b/src/api/burn/bextutil/inc/IBootstrapperExtension.h
@@ -0,0 +1,21 @@
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 <BootstrapperExtension.h>
5
6DECLARE_INTERFACE_IID_(IBootstrapperExtension, IUnknown, "93123C9D-796B-4FCD-A507-6EDEF9A925FD")
7{
8 STDMETHOD(Search)(
9 __in LPCWSTR wzId,
10 __in LPCWSTR wzVariable
11 ) = 0;
12
13 // BootstrapperExtensionProc - The PFN_BOOTSTRAPPER_EXTENSION_PROC can call this method to give the BootstrapperExtension raw access to the callback from the engine.
14 // This might be used to help the BootstrapperExtension support more than one version of the engine.
15 STDMETHOD(BootstrapperExtensionProc)(
16 __in BOOTSTRAPPER_EXTENSION_MESSAGE message,
17 __in const LPVOID pvArgs,
18 __inout LPVOID pvResults,
19 __in_opt LPVOID pvContext
20 ) = 0;
21};