From 7099dd38ab902e7fb92706314fa8710a34f165a5 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 28 Apr 2021 16:43:23 -0500 Subject: size_t-ify BootstrapperEngine.h and BundleExtensionEngine.h --- src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h | 8 ++++---- .../inc/BundleExtensionEngine.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/WixToolset.BootstrapperCore.Native') 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 DWORD cbSize; LPWSTR wzOut; // Should be initialized to the size of wzOut. - DWORD cchOut; + SIZE_T cchOut; } BAENGINE_ESCAPESTRING_RESULTS; typedef struct _BAENGINE_EVALUATECONDITION_ARGS @@ -209,7 +209,7 @@ typedef struct _BAENGINE_FORMATSTRING_RESULTS DWORD cbSize; LPWSTR wzOut; // Should be initialized to the size of wzOut. - DWORD cchOut; + SIZE_T cchOut; } BAENGINE_FORMATSTRING_RESULTS; typedef struct _BAENGINE_GETPACKAGECOUNT_ARGS @@ -246,7 +246,7 @@ typedef struct _BAENGINE_GETVARIABLESTRING_RESULTS DWORD cbSize; LPWSTR wzValue; // Should be initialized to the size of wzValue. - DWORD cchValue; + SIZE_T cchValue; } BAENGINE_GETVARIABLESTRING_RESULTS; typedef struct _BAENGINE_GETVARIABLEVERSION_ARGS @@ -260,7 +260,7 @@ typedef struct _BAENGINE_GETVARIABLEVERSION_RESULTS DWORD cbSize; LPWSTR wzValue; // Should be initialized to the size of wzValue. - DWORD cchValue; + SIZE_T cchValue; } BAENGINE_GETVARIABLEVERSION_RESULTS; typedef 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 DWORD cbSize; LPWSTR wzOut; // Should be initialized to the size of wzOut. - DWORD cchOut; + SIZE_T cchOut; } BUNDLE_EXTENSION_ENGINE_ESCAPESTRING_RESULTS; typedef struct _BUNDLE_EXTENSION_ENGINE_EVALUATECONDITION_ARGS @@ -80,7 +80,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS DWORD cbSize; LPWSTR wzOut; // Should be initialized to the size of wzOut. - DWORD cchOut; + SIZE_T cchOut; } BUNDLE_EXTENSION_ENGINE_FORMATSTRING_RESULTS; typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLENUMERIC_ARGS @@ -106,7 +106,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS DWORD cbSize; LPWSTR wzValue; // Should be initialized to the size of wzValue. - DWORD cchValue; + SIZE_T cchValue; } BUNDLE_EXTENSION_ENGINE_GETVARIABLESTRING_RESULTS; typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_ARGS @@ -120,7 +120,7 @@ typedef struct _BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS DWORD cbSize; LPWSTR wzValue; // Should be initialized to the size of wzValue. - DWORD cchValue; + SIZE_T cchValue; } BUNDLE_EXTENSION_ENGINE_GETVARIABLEVERSION_RESULTS; typedef struct _BUNDLE_EXTENSION_ENGINE_LOG_ARGS -- cgit v1.2.3-55-g6feb