blob: 99923c182e256448fb18cac6c4920d10cdb8ed44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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
/********************************************************************
CondEvaluate - evaluates the condition using the given variables.
********************************************************************/
extern "C" HRESULT DAPI CondEvaluate(
__in VARIABLES_HANDLE pVariables,
__in_z LPCWSTR wzCondition,
__out BOOL* pf
)
{
UNREFERENCED_PARAMETER(pVariables);
UNREFERENCED_PARAMETER(wzCondition);
UNREFERENCED_PARAMETER(pf);
return E_NOTIMPL;
}
|