summaryrefslogtreecommitdiff
path: root/src/ext/Util/ca/sca.h
diff options
context:
space:
mode:
authorBevan Weiss <bevan.weiss@gmail.com>2025-01-02 23:45:35 +1100
committerRob Mensching <rob@firegiant.com>2025-02-11 23:14:49 -0800
commitfcae786168ee7c148ac932d725357f9714ad6631 (patch)
tree719b82a32883ccc652313e418f8a633d4c6ae9ad /src/ext/Util/ca/sca.h
parenteda11c7eb726da970de68c5b353f946d1da0a7a3 (diff)
downloadwix-fcae786168ee7c148ac932d725357f9714ad6631.tar.gz
wix-fcae786168ee7c148ac932d725357f9714ad6631.tar.bz2
wix-fcae786168ee7c148ac932d725357f9714ad6631.zip
Re-align enumeration values to those for User account modifications.
Since there's no reason to not have them identical where practical. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
Diffstat (limited to 'src/ext/Util/ca/sca.h')
-rw-r--r--src/ext/Util/ca/sca.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ext/Util/ca/sca.h b/src/ext/Util/ca/sca.h
index 0e25a19a..c5034bd1 100644
--- a/src/ext/Util/ca/sca.h
+++ b/src/ext/Util/ca/sca.h
@@ -22,11 +22,11 @@ enum SCAU_ATTRIBUTES
22// group creation attributes definitions 22// group creation attributes definitions
23enum SCAG_ATTRIBUTES 23enum SCAG_ATTRIBUTES
24{ 24{
25 SCAG_FAIL_IF_EXISTS = 0x00000001, 25 SCAG_FAIL_IF_EXISTS = 0x00000010,
26 SCAG_UPDATE_IF_EXISTS = 0x00000002, 26 SCAG_UPDATE_IF_EXISTS = 0x00000020,
27 27
28 SCAG_DONT_REMOVE_ON_UNINSTALL = 0x00000004, 28 SCAG_DONT_REMOVE_ON_UNINSTALL = 0x00000100,
29 SCAG_DONT_CREATE_GROUP = 0x00000008, 29 SCAG_DONT_CREATE_GROUP = 0x00000200,
30 SCAG_NON_VITAL = 0x00000010, 30 SCAG_NON_VITAL = 0x00000400,
31 SCAG_REMOVE_COMMENT = 0x00000020, 31 SCAG_REMOVE_COMMENT = 0x00000800,
32}; 32};