We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8be2fd commit deb67e9Copy full SHA for deb67e9
windows/registry/key.go
@@ -33,6 +33,14 @@ const (
33
// Registry key security and access rights.
34
// See https://msdn.microsoft.com/en-us/library/windows/desktop/ms724878.aspx
35
// for details.
36
+
37
+ // Standard access rights
38
+ DELETE = 0x00010000
39
+ READ_CONTROL = 0x00020000
40
+ WRITE_DAC = 0x00040000
41
+ WRITE_OWNER = 0x00080000
42
43
+ // Specific access rights
44
ALL_ACCESS = 0xf003f
45
CREATE_LINK = 0x00020
46
CREATE_SUB_KEY = 0x00004
0 commit comments