1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
#pragma once
// 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.
#define BURN_CACHE_MAX_SEARCH_PATHS 7
#ifdef __cplusplus
extern "C" {
#endif
// structs
// functions
HRESULT CacheInitialize(
__in BURN_REGISTRATION* pRegistration,
__in BURN_VARIABLES* pVariables,
__in_z_opt LPCWSTR wzSourceProcessPath
);
HRESULT CacheEnsureWorkingFolder(
__in_z_opt LPCWSTR wzBundleId,
__deref_out_z_opt LPWSTR* psczWorkingFolder
);
HRESULT CacheCalculateBundleWorkingPath(
__in_z LPCWSTR wzBundleId,
__in LPCWSTR wzExecutableName,
__deref_out_z LPWSTR* psczWorkingPath
);
HRESULT CacheCalculateBundleLayoutWorkingPath(
__in_z LPCWSTR wzBundleId,
__deref_out_z LPWSTR* psczWorkingPath
);
HRESULT CacheCalculatePayloadWorkingPath(
__in_z LPCWSTR wzBundleId,
__in BURN_PAYLOAD* pPayload,
__deref_out_z LPWSTR* psczWorkingPath
);
HRESULT CacheCalculateContainerWorkingPath(
__in_z LPCWSTR wzBundleId,
__in BURN_CONTAINER* pContainer,
__deref_out_z LPWSTR* psczWorkingPath
);
HRESULT CacheGetRootCompletedPath(
__in BOOL fPerMachine,
__in BOOL fForceInitialize,
__deref_out_z LPWSTR* psczRootCompletedPath
);
HRESULT CacheGetCompletedPath(
__in BOOL fPerMachine,
__in_z LPCWSTR wzCacheId,
__deref_out_z LPWSTR* psczCompletedPath
);
HRESULT CacheGetResumePath(
__in_z LPCWSTR wzPayloadWorkingPath,
__deref_out_z LPWSTR* psczResumePath
);
HRESULT CacheGetLocalSourcePaths(
__in_z LPCWSTR wzRelativePath,
__in_z LPCWSTR wzSourcePath,
__in_z LPCWSTR wzDestinationPath,
__in_z_opt LPCWSTR wzLayoutDirectory,
__in BURN_VARIABLES* pVariables,
__inout LPWSTR** prgSearchPaths,
__out DWORD* pcSearchPaths
);
HRESULT CacheSetLastUsedSource(
__in BURN_VARIABLES* pVariables,
__in_z LPCWSTR wzSourcePath,
__in_z LPCWSTR wzRelativePath
);
HRESULT CacheSendProgressCallback(
__in DOWNLOAD_CACHE_CALLBACK* pCallback,
__in DWORD64 dw64Progress,
__in DWORD64 dw64Total,
__in HANDLE hDestinationFile
);
void CacheSendErrorCallback(
__in DOWNLOAD_CACHE_CALLBACK* pCallback,
__in HRESULT hrError,
__in_z_opt LPCWSTR wzError,
__out_opt BOOL* pfRetry
);
BOOL CacheBundleRunningFromCache();
HRESULT CacheBundleToCleanRoom(
__in BURN_PAYLOADS* pUxPayloads,
__in BURN_SECTION* pSection,
__deref_out_z_opt LPWSTR* psczCleanRoomBundlePath
);
HRESULT CacheBundleToWorkingDirectory(
__in_z LPCWSTR wzBundleId,
__in_z LPCWSTR wzExecutableName,
__in BURN_PAYLOADS* pUxPayloads,
__in BURN_SECTION* pSection,
__deref_out_z_opt LPWSTR* psczEngineWorkingPath
);
HRESULT CacheLayoutBundle(
__in_z LPCWSTR wzExecutableName,
__in_z LPCWSTR wzLayoutDirectory,
__in_z LPCWSTR wzSourceBundlePath
);
HRESULT CacheCompleteBundle(
__in BOOL fPerMachine,
__in_z LPCWSTR wzExecutableName,
__in_z LPCWSTR wzBundleId,
__in_z LPCWSTR wzSourceBundlePath
#ifdef DEBUG
, __in_z LPCWSTR wzExecutablePath
#endif
);
HRESULT CacheLayoutContainer(
__in BURN_CONTAINER* pContainer,
__in_z_opt LPCWSTR wzLayoutDirectory,
__in_z LPCWSTR wzUnverifiedContainerPath,
__in BOOL fMove
);
HRESULT CacheLayoutPayload(
__in BURN_PAYLOAD* pPayload,
__in_z_opt LPCWSTR wzLayoutDirectory,
__in_z LPCWSTR wzUnverifiedPayloadPath,
__in BOOL fMove
);
HRESULT CacheCompletePayload(
__in BOOL fPerMachine,
__in BURN_PAYLOAD* pPayload,
__in_z LPCWSTR wzCacheId,
__in_z LPCWSTR wzUnverifiedPayloadPath,
__in BOOL fMove
);
HRESULT CacheVerifyContainer(
__in BURN_CONTAINER* pContainer,
__in_z LPCWSTR wzCachedDirectory
);
HRESULT CacheVerifyPayload(
__in BURN_PAYLOAD* pPayload,
__in_z LPCWSTR wzCachedDirectory
);
HRESULT CacheRemoveWorkingFolder(
__in_z_opt LPCWSTR wzBundleId
);
HRESULT CacheRemoveBundle(
__in BOOL fPerMachine,
__in_z LPCWSTR wzPackageId
);
HRESULT CacheRemovePackage(
__in BOOL fPerMachine,
__in_z LPCWSTR wzPackageId,
__in_z LPCWSTR wzCacheId
);
void CacheCleanup(
__in BOOL fPerMachine,
__in_z LPCWSTR wzBundleId
);
void CacheUninitialize();
#ifdef __cplusplus
}
#endif
|