blob: 370669dda94856da65c596174f557aac3c9a5464 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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 "precomp.h"
// function definitions
extern "C" HRESULT WINAPI BundleExtensionCreate(
__in const BUNDLE_EXTENSION_CREATE_ARGS* /*pArgs*/,
__inout BUNDLE_EXTENSION_CREATE_RESULTS* /*pResults*/
)
{
HRESULT hr = S_OK;
return hr;
}
extern "C" void WINAPI BundleExtensionDestroy()
{
}
|