aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/bextutil/inc/BextBaseBundleExtensionProc.h
blob: cd7e3cb3bbd52a689caa5093c46fc3994e84a889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#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 <windows.h>

#include <IBundleExtensionEngine.h>
#include <IBundleExtension.h>

static HRESULT BextBaseBEProcSearch(
    __in IBundleExtension* pBE,
    __in BUNDLE_EXTENSION_SEARCH_ARGS* pArgs,
    __inout BUNDLE_EXTENSION_SEARCH_RESULTS* /*pResults*/
    )
{
    return pBE->Search(pArgs->wzId, pArgs->wzVariable);
}

/*******************************************************************
BextBaseBundleExtensionProc - requires pvContext to be of type IBundleExtension.
                              Provides a default mapping between the message based
                              BundleExtension interface and the COM-based BundleExtension interface.

*******************************************************************/
static HRESULT WINAPI BextBaseBundleExtensionProc(
    __in BUNDLE_EXTENSION_MESSAGE message,
    __in const LPVOID pvArgs,
    __inout LPVOID pvResults,
    __in_opt LPVOID pvContext
    )
{
    IBundleExtension* pBE = reinterpret_cast<IBundleExtension*>(pvContext);
    HRESULT hr = pBE->BundleExtensionProc(message, pvArgs, pvResults, pvContext);

    if (E_NOTIMPL == hr)
    {
        switch (message)
        {
        case BUNDLE_EXTENSION_MESSAGE_SEARCH:
            hr = BextBaseBEProcSearch(pBE, reinterpret_cast<BUNDLE_EXTENSION_SEARCH_ARGS*>(pvArgs), reinterpret_cast<BUNDLE_EXTENSION_SEARCH_RESULTS*>(pvResults));
            break;
        }
    }

    return hr;
}