diff options
Diffstat (limited to 'src/libs/dutil')
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/butil.cpp | 12 | ||||
-rw-r--r-- | src/libs/dutil/WixToolset.DUtil/inc/butil.h | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/libs/dutil/WixToolset.DUtil/butil.cpp b/src/libs/dutil/WixToolset.DUtil/butil.cpp index ac322ae7..175903ad 100644 --- a/src/libs/dutil/WixToolset.DUtil/butil.cpp +++ b/src/libs/dutil/WixToolset.DUtil/butil.cpp | |||
@@ -559,7 +559,7 @@ static HRESULT DetermineRelationType( | |||
559 | { | 559 | { |
560 | ExitOnFailure(hr, "Failed to do array search for addon code match."); | 560 | ExitOnFailure(hr, "Failed to do array search for addon code match."); |
561 | 561 | ||
562 | *pRelationType = BUNDLE_RELATION_DEPENDENT; | 562 | *pRelationType = BUNDLE_RELATION_DEPENDENT_ADDON; |
563 | ExitFunction(); | 563 | ExitFunction(); |
564 | } | 564 | } |
565 | 565 | ||
@@ -571,9 +571,9 @@ static HRESULT DetermineRelationType( | |||
571 | } | 571 | } |
572 | else | 572 | else |
573 | { | 573 | { |
574 | ExitOnFailure(hr, "Failed to do array search for addon code match."); | 574 | ExitOnFailure(hr, "Failed to do array search for patch code match."); |
575 | 575 | ||
576 | *pRelationType = BUNDLE_RELATION_DEPENDENT; | 576 | *pRelationType = BUNDLE_RELATION_DEPENDENT_PATCH; |
577 | ExitFunction(); | 577 | ExitFunction(); |
578 | } | 578 | } |
579 | 579 | ||
@@ -690,7 +690,7 @@ static HRESULT DetermineRelationType( | |||
690 | { | 690 | { |
691 | ExitOnFailure(hr, "Failed to do array search for addon code match."); | 691 | ExitOnFailure(hr, "Failed to do array search for addon code match."); |
692 | 692 | ||
693 | *pRelationType = BUNDLE_RELATION_DEPENDENT; | 693 | *pRelationType = BUNDLE_RELATION_DEPENDENT_ADDON; |
694 | ExitFunction(); | 694 | ExitFunction(); |
695 | } | 695 | } |
696 | 696 | ||
@@ -702,9 +702,9 @@ static HRESULT DetermineRelationType( | |||
702 | } | 702 | } |
703 | else | 703 | else |
704 | { | 704 | { |
705 | ExitOnFailure(hr, "Failed to do array search for addon code match."); | 705 | ExitOnFailure(hr, "Failed to do array search for patch code match."); |
706 | 706 | ||
707 | *pRelationType = BUNDLE_RELATION_DEPENDENT; | 707 | *pRelationType = BUNDLE_RELATION_DEPENDENT_PATCH; |
708 | ExitFunction(); | 708 | ExitFunction(); |
709 | } | 709 | } |
710 | 710 | ||
diff --git a/src/libs/dutil/WixToolset.DUtil/inc/butil.h b/src/libs/dutil/WixToolset.DUtil/inc/butil.h index 0d3eefe3..5d390344 100644 --- a/src/libs/dutil/WixToolset.DUtil/inc/butil.h +++ b/src/libs/dutil/WixToolset.DUtil/inc/butil.h | |||
@@ -25,8 +25,8 @@ typedef enum _BUNDLE_RELATION_TYPE | |||
25 | BUNDLE_RELATION_UPGRADE, | 25 | BUNDLE_RELATION_UPGRADE, |
26 | BUNDLE_RELATION_ADDON, | 26 | BUNDLE_RELATION_ADDON, |
27 | BUNDLE_RELATION_PATCH, | 27 | BUNDLE_RELATION_PATCH, |
28 | BUNDLE_RELATION_DEPENDENT, | 28 | BUNDLE_RELATION_DEPENDENT_ADDON, |
29 | BUNDLE_RELATION_UPDATE, | 29 | BUNDLE_RELATION_DEPENDENT_PATCH, |
30 | } BUNDLE_RELATION_TYPE; | 30 | } BUNDLE_RELATION_TYPE; |
31 | 31 | ||
32 | typedef struct _BUNDLE_QUERY_RELATED_BUNDLE_RESULT | 32 | typedef struct _BUNDLE_QUERY_RELATED_BUNDLE_RESULT |