diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-28 16:36:56 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-29 13:58:14 -0500 |
commit | bcd3ee7ab858d62beb36af9f5986544b68a3dd35 (patch) | |
tree | 424c4e61a580b7c4b7481712f69ab0193d76b9c4 /src/dutil/inc/strutil.h | |
parent | d73c29407fe5ec6a0207af7d9c2547457ae0854c (diff) | |
download | wix-bcd3ee7ab858d62beb36af9f5986544b68a3dd35.tar.gz wix-bcd3ee7ab858d62beb36af9f5986544b68a3dd35.tar.bz2 wix-bcd3ee7ab858d62beb36af9f5986544b68a3dd35.zip |
Clean up more 32-bit assumptions.
Diffstat (limited to 'src/dutil/inc/strutil.h')
-rw-r--r-- | src/dutil/inc/strutil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dutil/inc/strutil.h b/src/dutil/inc/strutil.h index cf8c751c..1cff9ab8 100644 --- a/src/dutil/inc/strutil.h +++ b/src/dutil/inc/strutil.h | |||
@@ -277,12 +277,12 @@ void DAPI StrStringToLower( | |||
277 | HRESULT DAPI StrAllocStringToUpperInvariant( | 277 | HRESULT DAPI StrAllocStringToUpperInvariant( |
278 | __deref_out_z LPWSTR* pscz, | 278 | __deref_out_z LPWSTR* pscz, |
279 | __in_z LPCWSTR wzSource, | 279 | __in_z LPCWSTR wzSource, |
280 | __in int cchSource | 280 | __in SIZE_T cchSource |
281 | ); | 281 | ); |
282 | HRESULT DAPI StrAllocStringToLowerInvariant( | 282 | HRESULT DAPI StrAllocStringToLowerInvariant( |
283 | __deref_out_z LPWSTR* pscz, | 283 | __deref_out_z LPWSTR* pscz, |
284 | __in_z LPCWSTR wzSource, | 284 | __in_z LPCWSTR wzSource, |
285 | __in int cchSource | 285 | __in SIZE_T cchSource |
286 | ); | 286 | ); |
287 | 287 | ||
288 | HRESULT DAPI StrArrayAllocString( | 288 | HRESULT DAPI StrArrayAllocString( |