| 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 DetectForwardCompatibleBundles( |
| 24 | __in BURN_USER_EXPERIENCE* pUX, |
| 25 | __in BURN_REGISTRATION* pRegistration |
| 26 | ); |
| 27 | |
| 28 | HRESULT DetectReportRelatedBundles( |
| 29 | __in BURN_USER_EXPERIENCE* pUX, |
| 30 | __in BURN_REGISTRATION* pRegistration, |
| 31 | __in BOOTSTRAPPER_RELATION_TYPE relationType, |
| 32 | __out BOOL* pfEligibleForCleanup |
| 33 | ); |
| 34 | |
| 35 | HRESULT DetectUpdate( |
| 36 | __in_z LPCWSTR wzBundleId, |
| 37 | __in BURN_USER_EXPERIENCE* pUX, |
| 38 | __in BURN_UPDATE* pUpdate |
| 39 | ); |
| 40 | |
| 41 | #if defined(__cplusplus) |
| 42 | } |
| 43 | #endif |