aboutsummaryrefslogtreecommitdiff
path: root/src/dutil/inc/condutil.h
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-09-03 11:22:38 -0700
committerRob Mensching <rob@firegiant.com>2017-09-03 13:33:33 -0700
commit5d8375007754101ff2889d0e79486c8f9b7cf5ab (patch)
treea76d6fb6a38dd9f04a93ffcfd9d64e76779b3414 /src/dutil/inc/condutil.h
parent8e8da6dbc051ec884b5d439bb4f44dc027d05bbf (diff)
downloadwix-5d8375007754101ff2889d0e79486c8f9b7cf5ab.tar.gz
wix-5d8375007754101ff2889d0e79486c8f9b7cf5ab.tar.bz2
wix-5d8375007754101ff2889d0e79486c8f9b7cf5ab.zip
Initial commit
Diffstat (limited to 'src/dutil/inc/condutil.h')
-rw-r--r--src/dutil/inc/condutil.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/dutil/inc/condutil.h b/src/dutil/inc/condutil.h
new file mode 100644
index 00000000..fb960042
--- /dev/null
+++ b/src/dutil/inc/condutil.h
@@ -0,0 +1,19 @@
1#pragma once
2// 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.
3
4
5#if defined(__cplusplus)
6extern "C" {
7#endif
8
9// function declarations
10
11HRESULT DAPI CondEvaluate(
12 __in VARIABLES_HANDLE pVariables,
13 __in_z LPCWSTR wzCondition,
14 __out BOOL* pf
15 );
16
17#if defined(__cplusplus)
18}
19#endif