aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BootstrapperCore.Native
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-04-28 16:43:23 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-04-29 14:05:34 -0500
commit7099dd38ab902e7fb92706314fa8710a34f165a5 (patch)
tree1f9fb9ee0ed792f683408406f20239428a16d8c3 /src/WixToolset.BootstrapperCore.Native
parente78138558fe17d8a91929c87b2a6d0c9a482d78a (diff)
downloadwix-7099dd38ab902e7fb92706314fa8710a34f165a5.tar.gz
wix-7099dd38ab902e7fb92706314fa8710a34f165a5.tar.bz2
wix-7099dd38ab902e7fb92706314fa8710a34f165a5.zip
size_t-ify BootstrapperEngine.h and BundleExtensionEngine.h
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native')
-rw-r--r--src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h8
-rw-r--r--src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h b/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
index 0a974563..f6804733 100644
--- a/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
+++ b/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
@@ -183,7 +183,7 @@ typedef struct _BAENGINE_ESCAPESTRING_RESULTS
183 DWORD cbSize; 183 DWORD cbSize;
184 LPWSTR wzOut; 184 LPWSTR wzOut;
185 // Should be initialized to the size of wzOut. 185 // Should be initialized to the size of wzOut.
186 DWORD cchOut; 186 SIZE_T cchOut;
187} BAENGINE_ESCAPESTRING_RESULTS; 187} BAENGINE_ESCAPESTRING_RESULTS;
188 188
189typedef struct _BAENGINE_EVALUATECONDITION_ARGS 189typedef struct _BAENGINE_EVALUATECONDITION_ARGS
@@ -209,7 +209,7 @@ typedef struct _BAENGINE_FORMATSTRING_RESULTS
209 DWORD cbSize; 209 DWORD cbSize;
210 LPWSTR wzOut; 210 LPWSTR wzOut;
211 // Should be initialized to the size of wzOut. 211 // Should be initialized to the size of wzOut.
212 DWORD cchOut; 212 SIZE_T cchOut;
213} BAENGINE_FORMATSTRING_RESULTS; 213} BAENGINE_FORMATSTRING_RESULTS;
214 214
215typedef struct _BAENGINE_GETPACKAGECOUNT_ARGS 215typedef struct _BAENGINE_GETPACKAGECOUNT_ARGS
@@ -246,7 +246,7 @@ typedef struct _BAENGINE_GETVARIABLESTRING_RESULTS
246 DWORD cbSize; 246 DWORD cbSize;
247 LPWSTR wzValue; 247 LPWSTR wzValue;
248 // Should be initialized to the size of wzValue. 248 // Should be initialized to the size of wzValue.
249 DWORD cchValue; 249 SIZE_T cchValue;
250} BAENGINE_GETVARIABLESTRING_RESULTS; 250} BAENGINE_GETVARIABLESTRING_RESULTS;
251 251
252typedef struct _BAENGINE_GETVARIABLEVERSION_ARGS 252typedef struct _BAENGINE_GETVARIABLEVERSION_ARGS
@@ -260,7 +260,7 @@ typedef struct _BAENGINE_GETVARIABLEVERSION_RESULTS
260 DWORD cbSize; 260 DWORD cbSize;
261 LPWSTR wzValue; 261 LPWSTR wzValue;
262 // Should be initialized to the size of wzValue. 262 // Should be initialized to the size of wzValue.
263 DWORD cchValue; 263 SIZE_T cchValue;
264} BAENGINE_GETVARIABLEVERSION_RESULTS; 264} BAENGINE_GETVARIABLEVERSION_RESULTS;
265 265
266typedef struct _BAENGINE_LAUNCHAPPROVEDEXE_ARGS 266typedef struct _BAENGINE_LAUNCHAPPROVEDEXE_ARGS
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
index 003ff635..b397ec16 100644
--- a/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
+++ b/src/WixToolset.BootstrapperCore.Native/inc/BundleExtensionEngine.h
@@ -54,7 +54,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_RESULTS
54 DWORD cbSize; 54 DWORD cbSize;
55 LPWSTR wzOut; 55 LPWSTR wzOut;
56 // Should be initialized to the size of wzOut. 56 // Should be initialized to the size of wzOut.
57 DWORD cchOut; 57 SIZE_T cchOut;
58} BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_RESULTS; 58} BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_RESULTS;
59 59
60typedef struct _BUNDLE_EXTENSION_ENGINE_EVALUATECONDITION_ARGS 60typedef struct _BUNDLE_EXTENSION_ENGINE_EVALUATECONDITION_ARGS
@@ -80,7 +80,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS
80 DWORD cbSize; 80 DWORD cbSize;
81 LPWSTR wzOut; 81 LPWSTR wzOut;
82 // Should be initialized to the size of wzOut. 82 // Should be initialized to the size of wzOut.
83 DWORD cchOut; 83 SIZE_T cchOut;
84} BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS; 84} BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS;
85 85
86typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_ARGS 86typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_ARGS
@@ -106,7 +106,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS
106 DWORD cbSize; 106 DWORD cbSize;
107 LPWSTR wzValue; 107 LPWSTR wzValue;
108 // Should be initialized to the size of wzValue. 108 // Should be initialized to the size of wzValue.
109 DWORD cchValue; 109 SIZE_T cchValue;
110} BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS; 110} BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS;
111 111
112typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_ARGS 112typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_ARGS
@@ -120,7 +120,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS
120 DWORD cbSize; 120 DWORD cbSize;
121 LPWSTR wzValue; 121 LPWSTR wzValue;
122 // Should be initialized to the size of wzValue. 122 // Should be initialized to the size of wzValue.
123 DWORD cchValue; 123 SIZE_T cchValue;
124} BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS; 124} BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS;
125 125
126typedef struct _BUNDLE_EXTENSION_ENGINE_LOG_ARGS 126typedef struct _BUNDLE_EXTENSION_ENGINE_LOG_ARGS