summaryrefslogtreecommitdiff
path: root/src/burn/engine/registration.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-08-03 15:41:18 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-08-04 10:03:57 -0500
commit6d7a275edafb3ae0f3cff94d66503a82dafb71f7 (patch)
treefae8f75e2cd1d7b179b0ed93e15625d68ba7c441 /src/burn/engine/registration.h
parented57d171f6fb6bb4e180696cc12caa568599566a (diff)
downloadwix-6d7a275edafb3ae0f3cff94d66503a82dafb71f7.tar.gz
wix-6d7a275edafb3ae0f3cff94d66503a82dafb71f7.tar.bz2
wix-6d7a275edafb3ae0f3cff94d66503a82dafb71f7.zip
Replace static cache internals with a struct.
Initialize them explicitly to make it clearer when that happens.
Diffstat (limited to 'src/burn/engine/registration.h')
-rw-r--r--src/burn/engine/registration.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/burn/engine/registration.h b/src/burn/engine/registration.h
index 936e5966..aa5bf842 100644
--- a/src/burn/engine/registration.h
+++ b/src/burn/engine/registration.h
@@ -166,6 +166,7 @@ typedef struct _BURN_REGISTRATION
166 166
167HRESULT RegistrationParseFromXml( 167HRESULT RegistrationParseFromXml(
168 __in BURN_REGISTRATION* pRegistration, 168 __in BURN_REGISTRATION* pRegistration,
169 __in BURN_CACHE* pCache,
169 __in IXMLDOMNode* pixnBundle 170 __in IXMLDOMNode* pixnBundle
170 ); 171 );
171void RegistrationUninitialize( 172void RegistrationUninitialize(
@@ -188,6 +189,7 @@ HRESULT RegistrationDetectRelatedBundles(
188HRESULT RegistrationSessionBegin( 189HRESULT RegistrationSessionBegin(
189 __in_z LPCWSTR wzEngineWorkingPath, 190 __in_z LPCWSTR wzEngineWorkingPath,
190 __in BURN_REGISTRATION* pRegistration, 191 __in BURN_REGISTRATION* pRegistration,
192 __in BURN_CACHE* pCache,
191 __in BURN_VARIABLES* pVariables, 193 __in BURN_VARIABLES* pVariables,
192 __in DWORD dwRegistrationOptions, 194 __in DWORD dwRegistrationOptions,
193 __in BURN_DEPENDENCY_REGISTRATION_ACTION dependencyRegistrationAction, 195 __in BURN_DEPENDENCY_REGISTRATION_ACTION dependencyRegistrationAction,
@@ -201,6 +203,7 @@ HRESULT RegistrationSessionResume(
201 ); 203 );
202HRESULT RegistrationSessionEnd( 204HRESULT RegistrationSessionEnd(
203 __in BURN_REGISTRATION* pRegistration, 205 __in BURN_REGISTRATION* pRegistration,
206 __in BURN_CACHE* pCache,
204 __in BURN_VARIABLES* pVariables, 207 __in BURN_VARIABLES* pVariables,
205 __in BURN_PACKAGES* pPackages, 208 __in BURN_PACKAGES* pPackages,
206 __in BURN_RESUME_MODE resumeMode, 209 __in BURN_RESUME_MODE resumeMode,