diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2018-12-29 22:12:08 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2018-12-29 22:12:08 -0600 |
commit | 61847dddd4fd497057c780658e383c4627de19ec (patch) | |
tree | f85a845182922538ab9aa6ee85b0db3ab40c1f6e /src/engine/detect.h | |
parent | 8295f5f8fd28042e1a0a172d5afbba79178064c2 (diff) | |
download | wix-61847dddd4fd497057c780658e383c4627de19ec.tar.gz wix-61847dddd4fd497057c780658e383c4627de19ec.tar.bz2 wix-61847dddd4fd497057c780658e383c4627de19ec.zip |
Import code from old v4 repo
Diffstat (limited to 'src/engine/detect.h')
-rw-r--r-- | src/engine/detect.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/engine/detect.h b/src/engine/detect.h new file mode 100644 index 00000000..01488f1a --- /dev/null +++ b/src/engine/detect.h | |||
@@ -0,0 +1,44 @@ | |||
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) | ||
6 | extern "C" { | ||
7 | #endif | ||
8 | |||
9 | |||
10 | // constants | ||
11 | |||
12 | |||
13 | // structs | ||
14 | |||
15 | |||
16 | // functions | ||
17 | |||
18 | void DetectReset( | ||
19 | __in BURN_REGISTRATION* pRegistration, | ||
20 | __in BURN_PACKAGES* pPackages | ||
21 | ); | ||
22 | |||
23 | HRESULT DetectForwardCompatibleBundle( | ||
24 | __in BURN_USER_EXPERIENCE* pUX, | ||
25 | __in BOOTSTRAPPER_COMMAND* pCommand, | ||
26 | __in BURN_REGISTRATION* pRegistration | ||
27 | ); | ||
28 | |||
29 | HRESULT DetectReportRelatedBundles( | ||
30 | __in BURN_USER_EXPERIENCE* pUX, | ||
31 | __in BURN_REGISTRATION* pRegistration, | ||
32 | __in BOOTSTRAPPER_RELATION_TYPE relationType, | ||
33 | __in BOOTSTRAPPER_ACTION action | ||
34 | ); | ||
35 | |||
36 | HRESULT DetectUpdate( | ||
37 | __in_z LPCWSTR wzBundleId, | ||
38 | __in BURN_USER_EXPERIENCE* pUX, | ||
39 | __in BURN_UPDATE* pUpdate | ||
40 | ); | ||
41 | |||
42 | #if defined(__cplusplus) | ||
43 | } | ||
44 | #endif | ||