aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h')
-rw-r--r--src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h8
1 files changed, 4 insertions, 4 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