From 5d8375007754101ff2889d0e79486c8f9b7cf5ab Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 3 Sep 2017 11:22:38 -0700 Subject: Initial commit --- src/dutil/condutil.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/dutil/condutil.cpp (limited to 'src/dutil/condutil.cpp') diff --git a/src/dutil/condutil.cpp b/src/dutil/condutil.cpp new file mode 100644 index 00000000..99923c18 --- /dev/null +++ b/src/dutil/condutil.cpp @@ -0,0 +1,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; +} -- cgit v1.2.3-55-g6feb