diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-08-29 21:30:21 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-10-24 20:03:38 -0500 |
commit | d3bd9187857fb42218925c4b9192b25f82e81db6 (patch) | |
tree | 343676fc10abebb08845ad8d2a390ef550a0a17b /src/dutil/inc | |
parent | d1d31466bb9f2e887a277807d60378afef9cc57d (diff) | |
download | wix-d3bd9187857fb42218925c4b9192b25f82e81db6.tar.gz wix-d3bd9187857fb42218925c4b9192b25f82e81db6.tar.bz2 wix-d3bd9187857fb42218925c4b9192b25f82e81db6.zip |
Update apuputil and deputil to not use DWORD64 for versions.
Diffstat (limited to 'src/dutil/inc')
-rw-r--r-- | src/dutil/inc/apuputil.h | 6 | ||||
-rw-r--r-- | src/dutil/inc/deputil.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/dutil/inc/apuputil.h b/src/dutil/inc/apuputil.h index 6764bde8..15d42f5d 100644 --- a/src/dutil/inc/apuputil.h +++ b/src/dutil/inc/apuputil.h | |||
@@ -46,8 +46,8 @@ struct APPLICATION_UPDATE_ENTRY | |||
46 | 46 | ||
47 | LPWSTR wzUpgradeId; | 47 | LPWSTR wzUpgradeId; |
48 | BOOL fUpgradeExclusive; | 48 | BOOL fUpgradeExclusive; |
49 | DWORD64 dw64Version; | 49 | VERUTIL_VERSION* pVersion; |
50 | DWORD64 dw64UpgradeVersion; | 50 | VERUTIL_VERSION* pUpgradeVersion; |
51 | 51 | ||
52 | DWORD64 dw64TotalSize; | 52 | DWORD64 dw64TotalSize; |
53 | 53 | ||
@@ -73,7 +73,7 @@ HRESULT DAPI ApupAllocChainFromAtom( | |||
73 | 73 | ||
74 | HRESULT DAPI ApupFilterChain( | 74 | HRESULT DAPI ApupFilterChain( |
75 | __in APPLICATION_UPDATE_CHAIN* pChain, | 75 | __in APPLICATION_UPDATE_CHAIN* pChain, |
76 | __in DWORD64 dw64Version, | 76 | __in VERUTIL_VERSION* pVersion, |
77 | __out APPLICATION_UPDATE_CHAIN** ppFilteredChain | 77 | __out APPLICATION_UPDATE_CHAIN** ppFilteredChain |
78 | ); | 78 | ); |
79 | 79 | ||
diff --git a/src/dutil/inc/deputil.h b/src/dutil/inc/deputil.h index a08d2eb5..8f5f0ae8 100644 --- a/src/dutil/inc/deputil.h +++ b/src/dutil/inc/deputil.h | |||
@@ -27,7 +27,7 @@ DAPI_(HRESULT) DepGetProviderInformation( | |||
27 | __in_z LPCWSTR wzProviderKey, | 27 | __in_z LPCWSTR wzProviderKey, |
28 | __deref_out_z_opt LPWSTR* psczId, | 28 | __deref_out_z_opt LPWSTR* psczId, |
29 | __deref_out_z_opt LPWSTR* psczName, | 29 | __deref_out_z_opt LPWSTR* psczName, |
30 | __out_opt DWORD64* pqwVersion | 30 | __deref_out_z_opt LPWSTR* psczVersion |
31 | ); | 31 | ); |
32 | 32 | ||
33 | /*************************************************************************** | 33 | /*************************************************************************** |