diff options
Diffstat (limited to 'src/burn/engine/update.h')
-rw-r--r-- | src/burn/engine/update.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/burn/engine/update.h b/src/burn/engine/update.h new file mode 100644 index 00000000..67d40481 --- /dev/null +++ b/src/burn/engine/update.h | |||
@@ -0,0 +1,33 @@ | |||
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 | // structs | ||
11 | |||
12 | typedef struct _BURN_UPDATE | ||
13 | { | ||
14 | BOOL fUpdateAvailable; | ||
15 | LPWSTR sczUpdateSource; | ||
16 | |||
17 | BURN_PACKAGE package; | ||
18 | } BURN_UPDATE; | ||
19 | |||
20 | |||
21 | // function declarations | ||
22 | |||
23 | HRESULT UpdateParseFromXml( | ||
24 | __in BURN_UPDATE* pUpdate, | ||
25 | __in IXMLDOMNode* pixnBundle | ||
26 | ); | ||
27 | void UpdateUninitialize( | ||
28 | __in BURN_UPDATE* pUpdate | ||
29 | ); | ||
30 | |||
31 | #if defined(__cplusplus) | ||
32 | } | ||
33 | #endif | ||