diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2019-01-06 21:09:03 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2019-01-06 21:09:03 -0600 |
commit | c55c1f2993d4ec950fc6b04508bc2b03cd733035 (patch) | |
tree | e857398222023178729809b0e25e44b3cc3359ae /src/dutil/condutil.cpp | |
parent | 88cd76dbbcce061f80e234489bc18450f56a6e77 (diff) | |
download | wix-c55c1f2993d4ec950fc6b04508bc2b03cd733035.tar.gz wix-c55c1f2993d4ec950fc6b04508bc2b03cd733035.tar.bz2 wix-c55c1f2993d4ec950fc6b04508bc2b03cd733035.zip |
Undo changes for condutil/varutil.
Diffstat (limited to 'src/dutil/condutil.cpp')
-rw-r--r-- | src/dutil/condutil.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/dutil/condutil.cpp b/src/dutil/condutil.cpp deleted file mode 100644 index 99923c18..00000000 --- a/src/dutil/condutil.cpp +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | // 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. | ||
2 | |||
3 | #include "precomp.h" | ||
4 | |||
5 | // function definitions | ||
6 | |||
7 | /******************************************************************** | ||
8 | CondEvaluate - evaluates the condition using the given variables. | ||
9 | ********************************************************************/ | ||
10 | extern "C" HRESULT DAPI CondEvaluate( | ||
11 | __in VARIABLES_HANDLE pVariables, | ||
12 | __in_z LPCWSTR wzCondition, | ||
13 | __out BOOL* pf | ||
14 | ) | ||
15 | { | ||
16 | UNREFERENCED_PARAMETER(pVariables); | ||
17 | UNREFERENCED_PARAMETER(wzCondition); | ||
18 | UNREFERENCED_PARAMETER(pf); | ||
19 | return E_NOTIMPL; | ||
20 | } | ||