summaryrefslogtreecommitdiff
path: root/src/libs/dutil/WixToolset.DUtil/inc/verutil.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-05-16 16:03:25 -0500
committerSean Hall <r.sean.hall@gmail.com>2022-05-17 22:54:13 -0500
commit0ea53e27361cbfe664df98d717e55005f329aff1 (patch)
treed75e02fadee9669593ca3ccf28401b67064244af /src/libs/dutil/WixToolset.DUtil/inc/verutil.h
parentd5985a1688bc878e42ffd3ce3939fa52303cab16 (diff)
downloadwix-0ea53e27361cbfe664df98d717e55005f329aff1.tar.gz
wix-0ea53e27361cbfe664df98d717e55005f329aff1.tar.bz2
wix-0ea53e27361cbfe664df98d717e55005f329aff1.zip
Store the prefix character in VERUTIL_VERSION.
Fix edge case where version string is all v's.
Diffstat (limited to 'src/libs/dutil/WixToolset.DUtil/inc/verutil.h')
-rw-r--r--src/libs/dutil/WixToolset.DUtil/inc/verutil.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/verutil.h b/src/libs/dutil/WixToolset.DUtil/inc/verutil.h
index 5247bb61..4fdaa522 100644
--- a/src/libs/dutil/WixToolset.DUtil/inc/verutil.h
+++ b/src/libs/dutil/WixToolset.DUtil/inc/verutil.h
@@ -19,6 +19,7 @@ typedef struct _VERUTIL_VERSION_RELEASE_LABEL
19typedef struct _VERUTIL_VERSION 19typedef struct _VERUTIL_VERSION
20{ 20{
21 LPWSTR sczVersion; 21 LPWSTR sczVersion;
22 WCHAR chPrefix;
22 DWORD dwMajor; 23 DWORD dwMajor;
23 DWORD dwMinor; 24 DWORD dwMinor;
24 DWORD dwPatch; 25 DWORD dwPatch;