From cacae742b21e42c6c7a1cd7c9ddd102264ac0782 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 9 Feb 2021 21:21:24 -0500 Subject: Update DUtil dependency. --- src/wcautil/inc/wcautil.h | 4 ++-- src/wcautil/packages.config | 2 +- src/wcautil/wcautil.vcxproj | 4 ++-- src/wcautil/wcawrap.cpp | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/wcautil/inc/wcautil.h b/src/wcautil/inc/wcautil.h index 982173f4..4d036a9d 100644 --- a/src/wcautil/inc/wcautil.h +++ b/src/wcautil/inc/wcautil.h @@ -232,7 +232,7 @@ HRESULT WIXAPI WcaGetRecordFormattedString( HRESULT WIXAPI WcaAllocStream( __deref_out_bcount_part(cbData, 0) BYTE** ppbData, - __in DWORD cbData + __in SIZE_T cbData ); HRESULT WIXAPI WcaFreeStream( __in BYTE* pbData @@ -287,7 +287,7 @@ HRESULT WIXAPI WcaWriteIntegerToCaData( ); HRESULT WIXAPI WcaWriteStreamToCaData( __in_bcount(cbData) const BYTE* pbData, - __in DWORD cbData, + __in SIZE_T cbData, __deref_inout_z_opt LPWSTR* ppwzCustomActionData ); diff --git a/src/wcautil/packages.config b/src/wcautil/packages.config index 924b5e93..aee0138c 100644 --- a/src/wcautil/packages.config +++ b/src/wcautil/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/src/wcautil/wcautil.vcxproj b/src/wcautil/wcautil.vcxproj index 27ed9ac7..c5b60b4a 100644 --- a/src/wcautil/wcautil.vcxproj +++ b/src/wcautil/wcautil.vcxproj @@ -1,7 +1,7 @@ - + Debug @@ -89,6 +89,6 @@ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + \ No newline at end of file diff --git a/src/wcautil/wcawrap.cpp b/src/wcautil/wcawrap.cpp index 625489c1..7c210069 100644 --- a/src/wcautil/wcawrap.cpp +++ b/src/wcautil/wcawrap.cpp @@ -1000,7 +1000,7 @@ NOTE: Use WcaFreeStream() to release the byte stream ********************************************************************/ extern "C" HRESULT WIXAPI WcaAllocStream( __deref_out_bcount_part(cbData, 0) BYTE** ppbData, - __in DWORD cbData + __in SIZE_T cbData ) { Assert(ppbData); @@ -1379,7 +1379,7 @@ feed a deferred CustomAction ********************************************************************/ extern "C" HRESULT WIXAPI WcaWriteStreamToCaData( __in_bcount(cbData) const BYTE* pbData, - __in DWORD cbData, + __in SIZE_T cbData, __deref_inout_z_opt LPWSTR* ppwzCustomActionData ) { -- cgit v1.2.3-55-g6feb