diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-09-03 11:22:38 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-09-03 13:33:33 -0700 |
| commit | 5d8375007754101ff2889d0e79486c8f9b7cf5ab (patch) | |
| tree | a76d6fb6a38dd9f04a93ffcfd9d64e76779b3414 /src/dutil/condutil.cpp | |
| parent | 8e8da6dbc051ec884b5d439bb4f44dc027d05bbf (diff) | |
| download | wix-5d8375007754101ff2889d0e79486c8f9b7cf5ab.tar.gz wix-5d8375007754101ff2889d0e79486c8f9b7cf5ab.tar.bz2 wix-5d8375007754101ff2889d0e79486c8f9b7cf5ab.zip | |
Initial commit
Diffstat (limited to 'src/dutil/condutil.cpp')
| -rw-r--r-- | src/dutil/condutil.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
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 @@ | |||
| 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 | } | ||
