blob: 19df05162fd58999806460e6f278c2f167cc91dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 "BootstrapperExtensionTypes.h"
DECLARE_INTERFACE_IID_(IBootstrapperExtension, IUnknown, "93123C9D-796B-4FCD-A507-6EDEF9A925FD")
{
STDMETHOD(Search)(
__in LPCWSTR wzId,
__in LPCWSTR wzVariable
) = 0;
// BootstrapperExtensionProc - The PFN_BOOTSTRAPPER_EXTENSION_PROC can call this method to give the BootstrapperExtension raw access to the callback from the engine.
// This might be used to help the BootstrapperExtension support more than one version of the engine.
STDMETHOD(BootstrapperExtensionProc)(
__in BOOTSTRAPPER_EXTENSION_MESSAGE message,
__in const LPVOID pvArgs,
__inout LPVOID pvResults,
__in_opt LPVOID pvContext
) = 0;
};
|