aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/wcautil/inc/wcautil.h4
-rw-r--r--src/wcautil/packages.config2
-rw-r--r--src/wcautil/wcautil.vcxproj4
-rw-r--r--src/wcautil/wcawrap.cpp4
-rw-r--r--wcautil.sln10
5 files changed, 9 insertions, 15 deletions
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(
232 232
233HRESULT WIXAPI WcaAllocStream( 233HRESULT WIXAPI WcaAllocStream(
234 __deref_out_bcount_part(cbData, 0) BYTE** ppbData, 234 __deref_out_bcount_part(cbData, 0) BYTE** ppbData,
235 __in DWORD cbData 235 __in SIZE_T cbData
236 ); 236 );
237HRESULT WIXAPI WcaFreeStream( 237HRESULT WIXAPI WcaFreeStream(
238 __in BYTE* pbData 238 __in BYTE* pbData
@@ -287,7 +287,7 @@ HRESULT WIXAPI WcaWriteIntegerToCaData(
287 ); 287 );
288HRESULT WIXAPI WcaWriteStreamToCaData( 288HRESULT WIXAPI WcaWriteStreamToCaData(
289 __in_bcount(cbData) const BYTE* pbData, 289 __in_bcount(cbData) const BYTE* pbData,
290 __in DWORD cbData, 290 __in SIZE_T cbData,
291 __deref_inout_z_opt LPWSTR* ppwzCustomActionData 291 __deref_inout_z_opt LPWSTR* ppwzCustomActionData
292 ); 292 );
293 293
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 @@
1<?xml version="1.0" encoding="utf-8"?> 1<?xml version="1.0" encoding="utf-8"?>
2<packages> 2<packages>
3 <package id="Nerdbank.GitVersioning" version="2.1.65" developmentDependency="true" targetFramework="net40" /> 3 <package id="Nerdbank.GitVersioning" version="2.1.65" developmentDependency="true" targetFramework="net40" />
4 <package id="WixToolset.DUtil" version="4.0.30" targetFramework="native" /> 4 <package id="WixToolset.DUtil" version="4.0.62" targetFramework="native" />
5</packages> \ No newline at end of file 5</packages> \ 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 @@
1<?xml version="1.0" encoding="utf-8"?> 1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> 2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4 <Import Project="..\..\packages\WixToolset.DUtil.4.0.30\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.30\build\WixToolset.DUtil.props')" /> 4 <Import Project="..\..\packages\WixToolset.DUtil.4.0.62\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.62\build\WixToolset.DUtil.props')" />
5 <ItemGroup Label="ProjectConfigurations"> 5 <ItemGroup Label="ProjectConfigurations">
6 <ProjectConfiguration Include="Debug|ARM64"> 6 <ProjectConfiguration Include="Debug|ARM64">
7 <Configuration>Debug</Configuration> 7 <Configuration>Debug</Configuration>
@@ -89,6 +89,6 @@
89 <ErrorText>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}.</ErrorText> 89 <ErrorText>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}.</ErrorText>
90 </PropertyGroup> 90 </PropertyGroup>
91 <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> 91 <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" />
92 <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.30\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.30\build\WixToolset.DUtil.props'))" /> 92 <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.62\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.62\build\WixToolset.DUtil.props'))" />
93 </Target> 93 </Target>
94</Project> \ No newline at end of file 94</Project> \ 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
1000********************************************************************/ 1000********************************************************************/
1001extern "C" HRESULT WIXAPI WcaAllocStream( 1001extern "C" HRESULT WIXAPI WcaAllocStream(
1002 __deref_out_bcount_part(cbData, 0) BYTE** ppbData, 1002 __deref_out_bcount_part(cbData, 0) BYTE** ppbData,
1003 __in DWORD cbData 1003 __in SIZE_T cbData
1004 ) 1004 )
1005{ 1005{
1006 Assert(ppbData); 1006 Assert(ppbData);
@@ -1379,7 +1379,7 @@ feed a deferred CustomAction
1379********************************************************************/ 1379********************************************************************/
1380extern "C" HRESULT WIXAPI WcaWriteStreamToCaData( 1380extern "C" HRESULT WIXAPI WcaWriteStreamToCaData(
1381 __in_bcount(cbData) const BYTE* pbData, 1381 __in_bcount(cbData) const BYTE* pbData,
1382 __in DWORD cbData, 1382 __in SIZE_T cbData,
1383 __deref_inout_z_opt LPWSTR* ppwzCustomActionData 1383 __deref_inout_z_opt LPWSTR* ppwzCustomActionData
1384 ) 1384 )
1385{ 1385{
diff --git a/wcautil.sln b/wcautil.sln
index 8f45f5f6..5682f1f7 100644
--- a/wcautil.sln
+++ b/wcautil.sln
@@ -1,32 +1,26 @@
1 1
2Microsoft Visual Studio Solution File, Format Version 12.00 2Microsoft Visual Studio Solution File, Format Version 12.00
3# Visual Studio 15 3# Visual Studio Version 16
4VisualStudioVersion = 15.0.26730.12 4VisualStudioVersion = 16.0.31005.135
5MinimumVisualStudioVersion = 15.0.26124.0 5MinimumVisualStudioVersion = 15.0.26124.0
6Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wcautil", "src\wcautil\wcautil.vcxproj", "{5B3714B6-3A76-463E-8595-D48DA276C512}" 6Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wcautil", "src\wcautil\wcautil.vcxproj", "{5B3714B6-3A76-463E-8595-D48DA276C512}"
7EndProject 7EndProject
8Global 8Global
9 GlobalSection(SolutionConfigurationPlatforms) = preSolution 9 GlobalSection(SolutionConfigurationPlatforms) = preSolution
10 Debug|ARM = Debug|ARM
11 Debug|ARM64 = Debug|ARM64 10 Debug|ARM64 = Debug|ARM64
12 Debug|x64 = Debug|x64 11 Debug|x64 = Debug|x64
13 Debug|x86 = Debug|x86 12 Debug|x86 = Debug|x86
14 Release|ARM = Release|ARM
15 Release|ARM64 = Release|ARM64 13 Release|ARM64 = Release|ARM64
16 Release|x64 = Release|x64 14 Release|x64 = Release|x64
17 Release|x86 = Release|x86 15 Release|x86 = Release|x86
18 EndGlobalSection 16 EndGlobalSection
19 GlobalSection(ProjectConfigurationPlatforms) = postSolution 17 GlobalSection(ProjectConfigurationPlatforms) = postSolution
20 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|ARM.ActiveCfg = Debug|ARM
21 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|ARM.Build.0 = Debug|ARM
22 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|ARM64.ActiveCfg = Debug|ARM64 18 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|ARM64.ActiveCfg = Debug|ARM64
23 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|ARM64.Build.0 = Debug|ARM64 19 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|ARM64.Build.0 = Debug|ARM64
24 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|x64.ActiveCfg = Debug|x64 20 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|x64.ActiveCfg = Debug|x64
25 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|x64.Build.0 = Debug|x64 21 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|x64.Build.0 = Debug|x64
26 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|x86.ActiveCfg = Debug|Win32 22 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|x86.ActiveCfg = Debug|Win32
27 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|x86.Build.0 = Debug|Win32 23 {5B3714B6-3A76-463E-8595-D48DA276C512}.Debug|x86.Build.0 = Debug|Win32
28 {5B3714B6-3A76-463E-8595-D48DA276C512}.Release|ARM.ActiveCfg = Release|ARM
29 {5B3714B6-3A76-463E-8595-D48DA276C512}.Release|ARM.Build.0 = Release|ARM
30 {5B3714B6-3A76-463E-8595-D48DA276C512}.Release|ARM64.ActiveCfg = Release|ARM64 24 {5B3714B6-3A76-463E-8595-D48DA276C512}.Release|ARM64.ActiveCfg = Release|ARM64
31 {5B3714B6-3A76-463E-8595-D48DA276C512}.Release|ARM64.Build.0 = Release|ARM64 25 {5B3714B6-3A76-463E-8595-D48DA276C512}.Release|ARM64.Build.0 = Release|ARM64
32 {5B3714B6-3A76-463E-8595-D48DA276C512}.Release|x64.ActiveCfg = Release|x64 26 {5B3714B6-3A76-463E-8595-D48DA276C512}.Release|x64.ActiveCfg = Release|x64